summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorDave Love <fx@gnu.org>1999-05-31 14:47:33 +0000
committerDave Love <fx@gnu.org>1999-05-31 14:47:33 +0000
commitb39682bb98f346ce27ee7b503c5d2ab33d620725 (patch)
treedff2545997c0794f1ef09f698aa572bafe608cb2 /lisp
parent13c8f10aac0843c33f9b95bdeed6624523535c49 (diff)
downloademacs-b39682bb98f346ce27ee7b503c5d2ab33d620725.tar.gz
(ispell-alternate-dictionary): Fix custom type.
(ispell-complete-word-dict): Likewise.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/textmodes/ispell.el4
1 files changed, 2 insertions, 2 deletions
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