Mercurial > emacs
diff lisp/mail/rmail.el @ 61814:edcdb077c4c1
(rmail-font-lock-keywords): Match any number of
citation markers at start of each line.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 24 Apr 2005 21:32:28 +0000 |
parents | eb4738891294 |
children | a7e02ef1e3d6 08185296b491 |
line wrap: on
line diff
--- a/lisp/mail/rmail.el Sun Apr 24 21:31:37 2005 +0000 +++ b/lisp/mail/rmail.el Sun Apr 24 21:32:28 2005 +0000 @@ -662,13 +662,12 @@ ;; Use MATCH-ANCHORED to effectively anchor the regexp left side. `(,cite-chars (,(concat "\\=[ \t]*" - "\\(\\([" cite-prefix "]+[" cite-suffix "]*\\)?" - "\\(" cite-chars "[ \t]*\\)\\)+" + "\\(\\(\\([" cite-prefix "]+[" cite-suffix "]*\\)?" + "\\(" cite-chars "[ \t]*\\)\\)+\\)" "\\(.*\\)") (beginning-of-line) (end-of-line) - (2 font-lock-comment-delimiter-face nil t) - (3 font-lock-comment-delimiter-face nil t) - (4 font-lock-comment-face nil t))) + (1 font-lock-comment-delimiter-face nil t) + (5 font-lock-comment-face nil t))) '("^\\(X-[a-z0-9-]+\\|In-reply-to\\|Date\\):.*\\(\n[ \t]+.*\\)*$" . font-lock-string-face)))) "Additional expressions to highlight in Rmail mode.")