aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2005-03-23 14:39:08 +0000
committerRichard M. Stallman <[email protected]>2005-03-23 14:39:08 +0000
commit676019c5c85ec8d356a15e3f72f316e339a2dbaf (patch)
tree4ebf4a17be7a9f6c22ca2eb38bffa1f258b13241
parent256249731ed8d41e9caf24d453b0c7c78da75dc2 (diff)
(mail-mode-flyspell-verify): Fix regexp syntax.
-rw-r--r--lisp/textmodes/flyspell.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el
index 7020426b9a..dfa3a7fa69 100644
--- a/lisp/textmodes/flyspell.el
+++ b/lisp/textmodes/flyspell.el
@@ -282,7 +282,7 @@ property of the major mode name.")
(t
(save-excursion
(beginning-of-line)
- (not (looking-at "[>}|]\\To:")))))))
+ (not (looking-at "[>}|]\\|To:")))))))
;*--- texinfo mode ----------------------------------------------------*/
(put 'texinfo-mode 'flyspell-mode-predicate 'texinfo-mode-flyspell-verify)