aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2005-04-23 16:36:53 +0000
committerRichard M. Stallman <[email protected]>2005-04-23 16:36:53 +0000
commit5aaf089934c44beaa3fee655032f22ec5aab5888 (patch)
tree4cd6a431d2c46e26c78ebf2f9cf202513f6b797c
parent7398a391bef2b2ea682b93b8225a31628ff80bbc (diff)
(rmail-font-lock-keywords): Use font-lock-comment-delimiter-face.
-rw-r--r--lisp/mail/rmail.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el
index e7c634f420..8bb289ffca 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.")