From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.devel Subject: Re: master 222a7a1 1/2: Flag checkdoc-symbol-words as a :safe variable Date: Sun, 19 Sep 2021 13:19:04 -0400 Message-ID: References: <20210919111926.21685.76222@vcs0.savannah.gnu.org> <20210919111928.5BBFD20ABE@vcs0.savannah.gnu.org> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="20943"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) Cc: Stefan Kangas To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sun Sep 19 19:20:43 2021 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mS0Uc-0005Ls-NP for ged-emacs-devel@m.gmane-mx.org; Sun, 19 Sep 2021 19:20:42 +0200 Original-Received: from localhost ([::1]:38330 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mS0Ub-0001hO-M3 for ged-emacs-devel@m.gmane-mx.org; Sun, 19 Sep 2021 13:20:41 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:48486) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mS0T6-0000wI-36 for emacs-devel@gnu.org; Sun, 19 Sep 2021 13:19:08 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:58286) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mS0T5-0004pq-RA; Sun, 19 Sep 2021 13:19:07 -0400 Original-Received: from rgm by fencepost.gnu.org with local (Exim 4.90_1) (envelope-from ) id 1mS0T2-0002gK-WB; Sun, 19 Sep 2021 13:19:05 -0400 X-Spook: virus Riot Central Intelligence Agency Blowpipe MILSATCOM X-Ran: qveZD;!Gq.CS|b&Kw5jn/adOqhDT=mwCZy77'(z6*s$5w|2"C;7M/Oa.H[`;I\'@)pQas. X-Hue: brightgreen X-Attribution: GM In-Reply-To: <20210919111928.5BBFD20ABE@vcs0.savannah.gnu.org> (Stefan Kangas's message of "Sun, 19 Sep 2021 07:19:28 -0400 (EDT)") X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:275067 Archived-At: > branch: master > commit 222a7a1a8afdf6921e5981133c605c2d695e9281 > Flag checkdoc-symbol-words as a :safe variable > --- a/lisp/emacs-lisp/checkdoc.el > +++ b/lisp/emacs-lisp/checkdoc.el > @@ -320,6 +320,7 @@ with a universal argument.") > These words are ignored when unquoted symbols are searched for. > This should be set in an Emacs Lisp file's local variables." > :type '(repeat (string :tag "Word")) > + :safe #'listp > :version "28.1") > ;;;###autoload(put 'checkdoc-symbol-words 'safe-local-variable #'checkdoc-list-of-strings-p) checkdoc-symbol-words already had a safe-local-variable property (last line of the context above).