emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 8906855: * lisp/emacs-lisp/checkdoc.el (checkdoc-symbol-words): F


From: Glenn Morris
Subject: master 8906855: * lisp/emacs-lisp/checkdoc.el (checkdoc-symbol-words): Fix type.
Date: Tue, 14 Sep 2021 11:05:42 -0400 (EDT)

branch: master
commit 89068554d7d0e9970a7269a0963e7a2bd0b1cc99
Author: Glenn Morris <rgm@gnu.org>
Commit: Glenn Morris <rgm@gnu.org>

    * lisp/emacs-lisp/checkdoc.el (checkdoc-symbol-words): Fix type.
---
 lisp/emacs-lisp/checkdoc.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/checkdoc.el b/lisp/emacs-lisp/checkdoc.el
index c916455..e10ea73 100644
--- a/lisp/emacs-lisp/checkdoc.el
+++ b/lisp/emacs-lisp/checkdoc.el
@@ -308,7 +308,7 @@ with a universal argument.")
   "A list of symbol names (strings) which also happen to make good words.
 These words are ignored when unquoted symbols are searched for.
 This should be set in an Emacs Lisp file's local variables."
-  :type '(repeat (symbol :tag "Word"))
+  :type '(repeat (string :tag "Word"))
   :version "28.1")
 ;;;###autoload(put 'checkdoc-symbol-words 'safe-local-variable 
#'checkdoc-list-of-strings-p)
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]