aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/mail/sendmail.el9
1 files changed, 4 insertions, 5 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index fca28e265b8..d0b6d84741e 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -378,13 +378,12 @@ actually occur.")
378 ;; Use MATCH-ANCHORED to effectively anchor the regexp left side. 378 ;; Use MATCH-ANCHORED to effectively anchor the regexp left side.
379 `(,cite-chars 379 `(,cite-chars
380 (,(concat "\\=[ \t]*" 380 (,(concat "\\=[ \t]*"
381 "\\(\\([" cite-prefix "]+[" cite-suffix "]*\\)?" 381 "\\(\\(\\([" cite-prefix "]+[" cite-suffix "]*\\)?"
382 "\\(" cite-chars "[ \t]*\\)\\)+" 382 "\\(" cite-chars "[ \t]*\\)\\)+\\)"
383 "\\(.*\\)") 383 "\\(.*\\)")
384 (beginning-of-line) (end-of-line) 384 (beginning-of-line) (end-of-line)
385 (2 font-lock-comment-delimiter-face nil t) 385 (1 font-lock-comment-delimiter-face nil t)
386 (3 font-lock-comment-delimiter-face nil t) 386 (5 font-lock-comment-face nil t)))
387 (4 font-lock-comment-face nil t)))
388 '("^\\(X-[A-Za-z0-9-]+\\|In-reply-to\\):.*\\(\n[ \t]+.*\\)*$" 387 '("^\\(X-[A-Za-z0-9-]+\\|In-reply-to\\):.*\\(\n[ \t]+.*\\)*$"
389 . font-lock-string-face)))) 388 . font-lock-string-face))))
390 "Additional expressions to highlight in Mail mode.") 389 "Additional expressions to highlight in Mail mode.")