diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-04-23 16:36:08 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-04-23 16:36:08 +0000 |
commit | 7398a391bef2b2ea682b93b8225a31628ff80bbc (patch) | |
tree | bb8806f6879bdc0082b935beec328d9a704e2305 /lisp | |
parent | 0ea50e431bdff36f89a5821ac49513a5accf65a1 (diff) | |
download | emacs-7398a391bef2b2ea682b93b8225a31628ff80bbc.tar.gz |
(mail-font-lock-keywords): Use font-lock-comment-delimiter-face.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mail/sendmail.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index fb2760b3bde..fca28e265b8 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el @@ -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.") |