aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-04-24 21:32:59 +0000
committerRichard M. Stallman2005-04-24 21:32:59 +0000
commitd2f290154dfda09d00c99ca1d26facd0810256f5 (patch)
treefd4c1b73dcb2a80ceb4ca90026cc0b4f22ee728c
parentfc2e9bcbf80b545dfac9290538be8d746b17bac8 (diff)
downloademacs-d2f290154dfda09d00c99ca1d26facd0810256f5.tar.gz
emacs-d2f290154dfda09d00c99ca1d26facd0810256f5.zip
(mail-font-lock-keywords): Match any number of
citation markers at start of each line.
-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.")