diff options
author | Richard M. Stallman <rms@gnu.org> | 2001-11-12 06:17:38 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2001-11-12 06:17:38 +0000 |
commit | b789d74a980d48eed4658376204703bdaabeebf8 (patch) | |
tree | f4252f59d57591e16ba529c8b1aa9e8a61f2650b /lisp/textmodes | |
parent | 2c850e26cee28949b0787c51001285353d22fd9b (diff) | |
download | emacs-b789d74a980d48eed4658376204703bdaabeebf8.tar.gz |
(flyspell-default-dictionary): Fix custom type.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/flyspell.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el index f32f7245887..62c826feca3 100644 --- a/lisp/textmodes/flyspell.el +++ b/lisp/textmodes/flyspell.el @@ -166,7 +166,7 @@ Otherwise, if `flyspell-default-dictionary' is nil, it means to use Ispell's ultimate default dictionary." :group 'flyspell :version "21.1" - :type '(choice string nil)) + :type '(choice string (const :tag "Default" nil)) (defcustom flyspell-tex-command-regexp "\\(\\(begin\\|end\\)[ \t]*{\\|\\(cite[a-z*]*\\|label\\|ref\\|eqref\\|usepackage\\|documentclass\\)[ \t]*\\(\\[[^]]*\\]\\)?{[^{}]*\\)" |