diff options
| author | Richard M. Stallman | 1996-12-27 02:06:41 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-12-27 02:06:41 +0000 |
| commit | 441c2ae48373e06bb40ed98fe5057a94b43f5bdb (patch) | |
| tree | 29567ef7d9dcdaf118d0002239737b41ff509593 | |
| parent | e39e74c0480a999e62ab57ae678d5b879b9a8264 (diff) | |
| download | emacs-441c2ae48373e06bb40ed98fe5057a94b43f5bdb.tar.gz emacs-441c2ae48373e06bb40ed98fe5057a94b43f5bdb.zip | |
(ispell-message-text-end): Handle `- ' before
the "cut here" or "start of..." line. Handle `Forward message'
without `Start of'.
| -rw-r--r-- | lisp/textmodes/ispell.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index 79f81ad4df2..dd553fa90e7 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el | |||
| @@ -2059,8 +2059,9 @@ warns you if the previous word is incorrectly spelled." | |||
| 2059 | ;; Matches reporter.el bug report | 2059 | ;; Matches reporter.el bug report |
| 2060 | "^current state:\n==============\n" | 2060 | "^current state:\n==============\n" |
| 2061 | ;; Matches "----------------- cut here" | 2061 | ;; Matches "----------------- cut here" |
| 2062 | ;; and "------- Start of forwarded message" | 2062 | ;; and "------- Start of forwarded message", |
| 2063 | "^[-=_]+\\s ?\\(cut here\\|Start of forwarded message\\)") | 2063 | ;; or either one with "- " in front. |
| 2064 | "^\\(- \\)?[-=_]+\\s ?\\(cut here\\|\\(Start of \\)?forwarded message\\)") | ||
| 2064 | "\\|") | 2065 | "\\|") |
| 2065 | "*End of text which will be checked in ispell-message. | 2066 | "*End of text which will be checked in ispell-message. |
| 2066 | If it is a string, limit at first occurrence of that regular expression. | 2067 | If it is a string, limit at first occurrence of that regular expression. |