From: Richard M. Stallman Date: Sat, 23 Apr 2005 16:36:53 +0000 (+0000) Subject: (rmail-font-lock-keywords): Use font-lock-comment-delimiter-face. X-Git-Tag: ttn-vms-21-2-B4~808 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5aaf089934c44beaa3fee655032f22ec5aab5888;p=emacs.git (rmail-font-lock-keywords): Use font-lock-comment-delimiter-face. --- 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.")