diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-09-28 08:06:31 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-09-28 08:06:31 +0200 |
commit | 76e846f92a3c625fe524c81aa996327fba5a9e65 (patch) | |
tree | e6eb908d75622bfb5786d6c301ee914fbd64efd3 /lisp/textmodes | |
parent | 213aed0691193dfbdf952c22b300d646f62a3eb9 (diff) | |
download | emacs-76e846f92a3c625fe524c81aa996327fba5a9e65.tar.gz emacs-76e846f92a3c625fe524c81aa996327fba5a9e65.tar.bz2 emacs-76e846f92a3c625fe524c81aa996327fba5a9e65.zip |
Adjust ispell-look-command type
* lisp/textmodes/ispell.el (ispell-look-command): Adjust :type
after previous change.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/ispell.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index 9aad5671152..0a3a49d868a 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el @@ -253,7 +253,8 @@ Should probably be \"-Ei\"." (defcustom ispell-look-command (executable-find "look") "Name of the look command for search processes. This must be an absolute file name." - :type 'file + :type '(choice (const :tag "None" nil) + file) :version "28.1") (defcustom ispell-look-p (and ispell-look-command |