aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2001-11-12 06:17:38 +0000
committerRichard M. Stallman2001-11-12 06:17:38 +0000
commitb789d74a980d48eed4658376204703bdaabeebf8 (patch)
treef4252f59d57591e16ba529c8b1aa9e8a61f2650b
parent2c850e26cee28949b0787c51001285353d22fd9b (diff)
downloademacs-b789d74a980d48eed4658376204703bdaabeebf8.tar.gz
emacs-b789d74a980d48eed4658376204703bdaabeebf8.zip
(flyspell-default-dictionary): Fix custom type.
-rw-r--r--lisp/ChangeLog10
-rw-r--r--lisp/textmodes/flyspell.el2
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 @@
12001-11-12 Richard M. Stallman <rms@gnu.org>
2
3 * textmodes/flyspell.el (flyspell-default-dictionary):
4 Fix custom type.
5
62001-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
12001-11-11 Richard M. Stallman <rms@gnu.org> 112001-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
166Ispell's ultimate default dictionary." 166Ispell'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]*\\(\\[[^]]*\\]\\)?{[^{}]*\\)"