1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-26 07:33:47 +00:00

* lisp/emacs-lisp/checkdoc.el (checkdoc-symbol-words): Fix type.

This commit is contained in:
Glenn Morris 2021-09-14 08:05:29 -07:00
parent 483df14d5c
commit 89068554d7

View File

@ -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)