From 70d2f1157903e45364d112b406304000bc0e355f Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sun, 21 Oct 2001 19:08:56 +0000 Subject: [PATCH] (rmail-summary-font-lock-keywords): Fix the regexps due to 5-digit message IDs. --- lisp/mail/rmailsum.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/mail/rmailsum.el b/lisp/mail/rmailsum.el index 357790228ac..e6d05659473 100644 --- a/lisp/mail/rmailsum.el +++ b/lisp/mail/rmailsum.el @@ -47,10 +47,10 @@ :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.") -- 2.39.5