]> git.eshelyaron.com Git - emacs.git/commitdiff
(rmail-summary-font-lock-keywords): Fix the
authorEli Zaretskii <eliz@gnu.org>
Sun, 21 Oct 2001 19:08:56 +0000 (19:08 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sun, 21 Oct 2001 19:08:56 +0000 (19:08 +0000)
regexps due to 5-digit message IDs.

lisp/mail/rmailsum.el

index 357790228ac4c3805cefa7a926ce457f886a8ddc..e6d05659473888e3e98d90db96f0b57bdd0dff5e 100644 (file)
   :group 'rmail-summary)
 
 (defvar rmail-summary-font-lock-keywords
-  '(("^....D.*" . font-lock-string-face)                       ; Deleted.
-    ("^....-.*" . font-lock-type-face)                         ; Unread.
+  '(("^.....D.*" . font-lock-string-face)                      ; Deleted.
+    ("^.....-.*" . font-lock-type-face)                                ; Unread.
     ;; Neither of the below will be highlighted if either of the above are:
-    ("^....[^D-] \\(......\\)" 1 font-lock-keyword-face)       ; Date.
+    ("^.....[^D-] \\(......\\)" 1 font-lock-keyword-face)      ; Date.
     ("{ \\([^\n}]+\\),}" 1 font-lock-comment-face))            ; Labels.
   "Additional expressions to highlight in Rmail Summary mode.")