From: Dave Love Date: Mon, 31 May 1999 14:47:33 +0000 (+0000) Subject: (ispell-alternate-dictionary): Fix custom type. X-Git-Tag: emacs-20.4~154 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=71c62b6bbecb0ecf24b79dc01b0238253e03ffd1;p=emacs.git (ispell-alternate-dictionary): Fix custom type. (ispell-complete-word-dict): Likewise. --- diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index 0802b7857f4..b42ff1c85c1 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el @@ -249,12 +249,12 @@ Must be greater than 1." ((file-exists-p "/sys/dict") "/sys/dict") (t "/usr/dict/words")) "*Alternate dictionary for spelling help." - :type 'file + :type '(choice file (const :tag "None" nil)) :group 'ispell) (defcustom ispell-complete-word-dict ispell-alternate-dictionary "*Dictionary used for word completion." - :type 'file + :type '(choice file (const :tag "None" nil)) :group 'ispell) (defcustom ispell-message-dictionary-alist nil