diff options
Diffstat (limited to 'lisp/mail/rmail.el')
-rw-r--r-- | lisp/mail/rmail.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index e7c634f4202..8bb289ffca3 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -666,7 +666,9 @@ The first parenthesized expression should match the MIME-charset name.") "\\(" cite-chars "[ \t]*\\)\\)+" "\\(.*\\)") (beginning-of-line) (end-of-line) - (3 font-lock-comment-face nil t))) + (2 font-lock-comment-delimiter-face nil t) + (3 font-lock-comment-delimiter-face nil t) + (4 font-lock-comment-face nil t))) '("^\\(X-[a-z0-9-]+\\|In-reply-to\\|Date\\):.*\\(\n[ \t]+.*\\)*$" . font-lock-string-face)))) "Additional expressions to highlight in Rmail mode.") |