From: Richard M. Stallman Date: Mon, 12 Nov 2001 06:17:38 +0000 (+0000) Subject: (flyspell-default-dictionary): Fix custom type. X-Git-Tag: ttn-vms-21-2-B4~18651 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b789d74a980d48eed4658376204703bdaabeebf8;p=emacs.git (flyspell-default-dictionary): Fix custom type. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6b5ebd71995..44630468932 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,13 @@ +2001-11-12 Richard M. Stallman + + * textmodes/flyspell.el (flyspell-default-dictionary): + Fix custom type. + +2001-11-05 Alex Schroeder + + * sql.el (sql-mode-syntax-table): The backslash is no longer an + escape character. + 2001-11-11 Richard M. Stallman * calendar/solar.el (solar-sunrise-and-sunset): 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]*\\(\\[[^]]*\\]\\)?{[^{}]*\\)"