(rmail-font-lock-keywords): Avoid old-style font-lock*-face variables

* lisp/mail/rmail.el (rmail-font-lock-keywords): Refer directly to the
font-lock faces.
This commit is contained in:
Stefan Monnier 2024-02-23 11:31:43 -05:00
parent 90d3b3408e
commit 0b855e1465

View file

@ -805,8 +805,8 @@ that knows the exact ordering of the \\( \\) subexpressions.")
"\\(" cite-chars "[ \t]*\\)\\)+\\)"
"\\(.*\\)")
(beginning-of-line) (end-of-line)
(1 font-lock-comment-delimiter-face nil t)
(5 font-lock-comment-face nil t)))
(1 'font-lock-comment-delimiter-face nil t)
(5 'font-lock-comment-face nil t)))
'("^\\(X-[a-z0-9-]+\\|In-Reply-To\\|Date\\):.*\\(\n[ \t]+.*\\)*$"
. 'rmail-header-name))))
"Additional expressions to highlight in Rmail mode.")