summaryrefslogtreecommitdiff
path: root/lisp/hilit19.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/hilit19.el')
-rw-r--r--lisp/hilit19.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/hilit19.el b/lisp/hilit19.el
index 9694d7dd0c3..941e797d2da 100644
--- a/lisp/hilit19.el
+++ b/lisp/hilit19.el
@@ -786,7 +786,9 @@ non-nil."
"Highlight a buffer containing a news article or mail message."
(save-excursion
(goto-char (point-min))
- (re-search-forward "^$" nil 'noerr)
+ ;; find separation between headers and body (either a blank line or
+ ;; the message separator line in mail-mode)
+ (re-search-forward "^\\(\\|--text follows this line--\\)$" nil 'noerr)
(hilit-unhighlight-region (point-min) (point-max) quietly)
(hilit-highlight-region (point-min) (point) 'msg-header quietly)
(hilit-highlight-region (point) (point-max) 'msg-body quietly)))