(mail-mode-flyspell-verify): Fix regexp syntax.

This commit is contained in:
Richard M. Stallman 2005-03-23 14:39:08 +00:00
parent 256249731e
commit 676019c5c8

View file

@ -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)