diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-04-23 16:36:53 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-04-23 16:36:53 +0000 |
commit | 5aaf089934c44beaa3fee655032f22ec5aab5888 (patch) | |
tree | 4cd6a431d2c46e26c78ebf2f9cf202513f6b797c /lisp/mail/rmail.el | |
parent | 7398a391bef2b2ea682b93b8225a31628ff80bbc (diff) | |
download | emacs-5aaf089934c44beaa3fee655032f22ec5aab5888.tar.gz |
(rmail-font-lock-keywords): Use font-lock-comment-delimiter-face.
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.") |