summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2021-09-14 08:05:29 -0700
committerGlenn Morris <rgm@gnu.org>2021-09-14 08:05:29 -0700
commit89068554d7d0e9970a7269a0963e7a2bd0b1cc99 (patch)
tree822036d8de46667afc7b77ead00c847e073c48f5 /lisp/emacs-lisp
parent483df14d5c4e04ff2a9fec18b68399c0ab2b56b4 (diff)
downloademacs-89068554d7d0e9970a7269a0963e7a2bd0b1cc99.tar.gz
emacs-89068554d7d0e9970a7269a0963e7a2bd0b1cc99.tar.bz2
emacs-89068554d7d0e9970a7269a0963e7a2bd0b1cc99.zip
* lisp/emacs-lisp/checkdoc.el (checkdoc-symbol-words): Fix type.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/checkdoc.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/checkdoc.el b/lisp/emacs-lisp/checkdoc.el
index c91645568cf..e10ea736cd2 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)