aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love1999-05-31 14:47:33 +0000
committerDave Love1999-05-31 14:47:33 +0000
commit71c62b6bbecb0ecf24b79dc01b0238253e03ffd1 (patch)
tree2e83ab9b580b4a9660d9f37c13229fd9b0cf9ba6
parentf3ae6c2a76c201660a4ecfe640fcd72c7bb7a2c1 (diff)
downloademacs-71c62b6bbecb0ecf24b79dc01b0238253e03ffd1.tar.gz
emacs-71c62b6bbecb0ecf24b79dc01b0238253e03ffd1.zip
(ispell-alternate-dictionary): Fix custom type.
(ispell-complete-word-dict): Likewise.
-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."
249 ((file-exists-p "/sys/dict") "/sys/dict") 249 ((file-exists-p "/sys/dict") "/sys/dict")
250 (t "/usr/dict/words")) 250 (t "/usr/dict/words"))
251 "*Alternate dictionary for spelling help." 251 "*Alternate dictionary for spelling help."
252 :type 'file 252 :type '(choice file (const :tag "None" nil))
253 :group 'ispell) 253 :group 'ispell)
254 254
255(defcustom ispell-complete-word-dict ispell-alternate-dictionary 255(defcustom ispell-complete-word-dict ispell-alternate-dictionary
256 "*Dictionary used for word completion." 256 "*Dictionary used for word completion."
257 :type 'file 257 :type '(choice file (const :tag "None" nil))
258 :group 'ispell) 258 :group 'ispell)
259 259
260(defcustom ispell-message-dictionary-alist nil 260(defcustom ispell-message-dictionary-alist nil