aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorKarl Heuer1995-05-27 00:22:53 +0000
committerKarl Heuer1995-05-27 00:22:53 +0000
commit5e228a39252a130c77eecea3cd29372faa7985ed (patch)
tree70742be76e91a4f44f887d138634b730534b9310 /lisp/textmodes
parentffd9c2a18859317a5251551c84d2a101a5bddedd (diff)
downloademacs-5e228a39252a130c77eecea3cd29372faa7985ed.tar.gz
emacs-5e228a39252a130c77eecea3cd29372faa7985ed.zip
(ispell-message-text-end): Match start of forwarded msg.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/ispell.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index 0a3b3201f04..a8c3cb3d809 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -2046,7 +2046,8 @@ warns you if the previous word is incorrectly spelled."
2046 ;; Matches context difference listing 2046 ;; Matches context difference listing
2047 "\\(diff -c .*\\)?\n\\*\\*\\* .*\n--- .*\n\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*" 2047 "\\(diff -c .*\\)?\n\\*\\*\\* .*\n--- .*\n\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*"
2048 ;; Matches "----------------- cut here" 2048 ;; Matches "----------------- cut here"
2049 "^[-=_]+\\s ?cut here") 2049 ;; and "------- Start of forwarded message"
2050 "^[-=_]+\\s ?\\(cut here\\|Start of forwarded message\\)")
2050 "\\|") 2051 "\\|")
2051 "*End of text which will be checked in ispell-message. 2052 "*End of text which will be checked in ispell-message.
2052If it is a string, limit at first occurrence of that regular expression. 2053If it is a string, limit at first occurrence of that regular expression.