]> git.eshelyaron.com Git - emacs.git/commitdiff
(rmail-font-lock-keywords): Match any number of
authorRichard M. Stallman <rms@gnu.org>
Sun, 24 Apr 2005 21:32:28 +0000 (21:32 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 24 Apr 2005 21:32:28 +0000 (21:32 +0000)
citation markers at start of each line.

lisp/mail/rmail.el

index 8bb289ffca3f4257c5cccc5a584f0253895f825f..8ba9408a76f97d6c8d164fe77e9d40e42721e8e0 100644 (file)
@@ -662,13 +662,12 @@ The first parenthesized expression should match the MIME-charset name.")
            ;; 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.")