1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-02 11:50:48 -08:00

(mail-font-lock-keywords): Use font-lock-comment-delimiter-face.

This commit is contained in:
Richard M. Stallman 2005-04-23 16:36:08 +00:00
parent 0ea50e431b
commit 7398a391be

View file

@ -382,7 +382,9 @@ actually occur.")
"\\(" 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-Za-z0-9-]+\\|In-reply-to\\):.*\\(\n[ \t]+.*\\)*$"
. font-lock-string-face))))
"Additional expressions to highlight in Mail mode.")