diff options
author | Pavel Janík <Pavel@Janik.cz> | 2001-11-12 08:17:15 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2001-11-12 08:17:15 +0000 |
commit | eb1d71ab61631a568cfc4a2d896a252aa100bd22 (patch) | |
tree | 4289547ef09c0ce42571f1f89bde372e865bcd3b /lisp | |
parent | a89f435d63d4549efbe5885b34b2def3132d8e7b (diff) | |
download | emacs-eb1d71ab61631a568cfc4a2d896a252aa100bd22.tar.gz emacs-eb1d71ab61631a568cfc4a2d896a252aa100bd22.tar.bz2 emacs-eb1d71ab61631a568cfc4a2d896a252aa100bd22.zip |
(flyspell-default-dictionary): Fix previous change.
Diffstat (limited to 'lisp')
-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 62c826feca3..0138509a1e4 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 (const :tag "Default" 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]*\\(\\[[^]]*\\]\\)?{[^{}]*\\)" |