From 89068554d7d0e9970a7269a0963e7a2bd0b1cc99 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Tue, 14 Sep 2021 08:05:29 -0700 Subject: [PATCH] * 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 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) -- 2.39.5