summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-09-09 02:56:16 +0000
committerRichard M. Stallman <rms@gnu.org>1997-09-09 02:56:16 +0000
commit46315cd996282fb2369469fc0720414e4876def9 (patch)
tree18413b2991f48863cb3edcffba852136b0328c4e
parent2cb658af2966eeebdd5ac0506ddcd0c841a59107 (diff)
downloademacs-46315cd996282fb2369469fc0720414e4876def9.tar.gz
(ispell-personal-dictionary): Fix customize type.
-rw-r--r--lisp/textmodes/ispell.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index 727a3653f10..c74a6d971bc 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -455,7 +455,8 @@ The function must take one string argument and return a string."
"*File name of your personal spelling dictionary, or nil.
If nil, the default personal dictionary, \"~/.ispell_DICTNAME\" is used,
where DICTNAME is the name of your default dictionary."
- :type 'file
+ :type '(choice file
+ (const :tag "default" nil))
:group 'ispell)
(defcustom ispell-silently-savep nil