aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-09-09 02:56:16 +0000
committerRichard M. Stallman1997-09-09 02:56:16 +0000
commit6c80b133aa3315ac79c1902965d6fa1c3dbbf33b (patch)
treedecf7c7e0aa988154c33a4fe058818012855b9e1
parentfec1279bc2223c6cd3c7d6373227d7af4b6e832f (diff)
downloademacs-6c80b133aa3315ac79c1902965d6fa1c3dbbf33b.tar.gz
emacs-6c80b133aa3315ac79c1902965d6fa1c3dbbf33b.zip
(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."
455 "*File name of your personal spelling dictionary, or nil. 455 "*File name of your personal spelling dictionary, or nil.
456If nil, the default personal dictionary, \"~/.ispell_DICTNAME\" is used, 456If nil, the default personal dictionary, \"~/.ispell_DICTNAME\" is used,
457where DICTNAME is the name of your default dictionary." 457where DICTNAME is the name of your default dictionary."
458 :type 'file 458 :type '(choice file
459 (const :tag "default" nil))
459 :group 'ispell) 460 :group 'ispell)
460 461
461(defcustom ispell-silently-savep nil 462(defcustom ispell-silently-savep nil