diff options
| author | Richard M. Stallman | 2001-11-12 06:17:38 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-11-12 06:17:38 +0000 |
| commit | b789d74a980d48eed4658376204703bdaabeebf8 (patch) | |
| tree | f4252f59d57591e16ba529c8b1aa9e8a61f2650b | |
| parent | 2c850e26cee28949b0787c51001285353d22fd9b (diff) | |
| download | emacs-b789d74a980d48eed4658376204703bdaabeebf8.tar.gz emacs-b789d74a980d48eed4658376204703bdaabeebf8.zip | |
(flyspell-default-dictionary): Fix custom type.
| -rw-r--r-- | lisp/ChangeLog | 10 | ||||
| -rw-r--r-- | lisp/textmodes/flyspell.el | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6b5ebd71995..44630468932 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2001-11-12 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * textmodes/flyspell.el (flyspell-default-dictionary): | ||
| 4 | Fix custom type. | ||
| 5 | |||
| 6 | 2001-11-05 Alex Schroeder <kensanata@yahoo.com> | ||
| 7 | |||
| 8 | * sql.el (sql-mode-syntax-table): The backslash is no longer an | ||
| 9 | escape character. | ||
| 10 | |||
| 1 | 2001-11-11 Richard M. Stallman <rms@gnu.org> | 11 | 2001-11-11 Richard M. Stallman <rms@gnu.org> |
| 2 | 12 | ||
| 3 | * calendar/solar.el (solar-sunrise-and-sunset): | 13 | * 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 | |||
| 166 | Ispell's ultimate default dictionary." | 166 | Ispell's ultimate default dictionary." |
| 167 | :group 'flyspell | 167 | :group 'flyspell |
| 168 | :version "21.1" | 168 | :version "21.1" |
| 169 | :type '(choice string nil)) | 169 | :type '(choice string (const :tag "Default" nil)) |
| 170 | 170 | ||
| 171 | (defcustom flyspell-tex-command-regexp | 171 | (defcustom flyspell-tex-command-regexp |
| 172 | "\\(\\(begin\\|end\\)[ \t]*{\\|\\(cite[a-z*]*\\|label\\|ref\\|eqref\\|usepackage\\|documentclass\\)[ \t]*\\(\\[[^]]*\\]\\)?{[^{}]*\\)" | 172 | "\\(\\(begin\\|end\\)[ \t]*{\\|\\(cite[a-z*]*\\|label\\|ref\\|eqref\\|usepackage\\|documentclass\\)[ \t]*\\(\\[[^]]*\\]\\)?{[^{}]*\\)" |