Mercurial > emacs
changeset 40155:c97b4697abed
(rmail-summary-font-lock-keywords): Fix the
regexps due to 5-digit message IDs.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sun, 21 Oct 2001 19:08:56 +0000 |
parents | 17357a050614 |
children | e3f8f857555b |
files | lisp/mail/rmailsum.el |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/mail/rmailsum.el Sun Oct 21 18:49:20 2001 +0000 +++ b/lisp/mail/rmailsum.el Sun Oct 21 19:08:56 2001 +0000 @@ -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.")