1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-02 11:21:42 +00:00

use a string that will never match.

This commit is contained in:
Simon Marshall 1998-03-27 10:11:45 +00:00
parent f45b7beb1c
commit 8646fe223f

View File

@ -272,7 +272,7 @@ actually occur.")
;; Use EVAL to delay in case `mail-header-separator' gets changed.
'(eval .
(let ((separator (if (zerop (length mail-header-separator))
" "
" \\`\\' "
(regexp-quote mail-header-separator))))
(cons (concat "^" separator "$") 'font-lock-warning-face)))
;; Use MATCH-ANCHORED to effectively anchor the regexp left side.