]> git.eshelyaron.com Git - emacs.git/commitdiff
(ispell-alternate-dictionary): Fix custom type.
authorDave Love <fx@gnu.org>
Mon, 31 May 1999 14:47:33 +0000 (14:47 +0000)
committerDave Love <fx@gnu.org>
Mon, 31 May 1999 14:47:33 +0000 (14:47 +0000)
(ispell-complete-word-dict): Likewise.

lisp/textmodes/ispell.el

index 0802b7857f404b4c39d17b8792aa95732e1b61b5..b42ff1c85c191bd496164c3c072e5abbb4b7d891 100644 (file)
@@ -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