# HG changeset patch # User Richard M. Stallman # Date 1111588748 0 # Node ID 8386904a5a5f4363f87dd25758bdd509da82467c # Parent 6c3c9561257e7442495237a7b92842539a909507 (mail-mode-flyspell-verify): Fix regexp syntax. diff -r 6c3c9561257e -r 8386904a5a5f lisp/textmodes/flyspell.el --- a/lisp/textmodes/flyspell.el Wed Mar 23 14:33:57 2005 +0000 +++ b/lisp/textmodes/flyspell.el Wed Mar 23 14:39:08 2005 +0000 @@ -282,7 +282,7 @@ (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)