From: Glenn Morris Date: Tue, 14 Sep 2021 15:05:29 +0000 (-0700) Subject: * lisp/emacs-lisp/checkdoc.el (checkdoc-symbol-words): Fix type. X-Git-Tag: emacs-28.0.90~972 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=89068554d7d0e9970a7269a0963e7a2bd0b1cc99;p=emacs.git * lisp/emacs-lisp/checkdoc.el (checkdoc-symbol-words): Fix type. --- 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)