diff options
author | Richard M. Stallman <rms@gnu.org> | 2003-01-06 01:07:14 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2003-01-06 01:07:14 +0000 |
commit | c034acdf5821baa967ef959d68ac7ca620f04e4f (patch) | |
tree | 8196ff37bc6d6bb3f325edd8dcbb7c7091c63476 /lisp | |
parent | 6a27bff161631ce5fe913aa25142d2b7ba356033 (diff) | |
download | emacs-c034acdf5821baa967ef959d68ac7ca620f04e4f.tar.gz |
(mail-font-lock-keywords): Match multiline In-Reply-To and X-*.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mail/sendmail.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index 00107a004cb..a7a65302efd 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el @@ -376,7 +376,7 @@ actually occur.") (beginning-of-line) (end-of-line) (2 font-lock-constant-face nil t) (4 font-lock-comment-face nil t))) - '("^\\(X-[A-Za-z0-9-]+\\|In-reply-to\\):.*" + '("^\\(X-[A-Za-z0-9-]+\\|In-reply-to\\):.*\\(\n[ \t]+.*\\)*$" . font-lock-string-face)))) "Additional expressions to highlight in Mail mode.") |