diff options
| -rw-r--r-- | lisp/textmodes/ispell.el | 4 |
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 |