(rmail-summary-font-lock-keywords): Fix the
regexps due to 5-digit message IDs.
This commit is contained in:
parent
4fdd691b32
commit
70d2f11579
1 changed files with 3 additions and 3 deletions
|
@ -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.")
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue