# HG changeset patch # User Eli Zaretskii # Date 1003691336 0 # Node ID c97b4697abedf851971a7d279a62a8b346cd5978 # Parent 17357a0506145183a561165b86186150c9ad8168 (rmail-summary-font-lock-keywords): Fix the regexps due to 5-digit message IDs. diff -r 17357a050614 -r c97b4697abed lisp/mail/rmailsum.el --- 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.")