From 3187cffc0d4c0b80b7d098e5a4a5614b6eb183dd Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Thu, 12 May 2005 21:23:04 +0000 Subject: [PATCH] (font-lock-comment-delimiter-face): Fix last change. --- lisp/font-lock.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/font-lock.el b/lisp/font-lock.el index 006d8713f9a..762923809d5 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el @@ -1677,7 +1677,11 @@ Sets various variables using `font-lock-defaults' (or, if nil, using :group 'font-lock-highlighting-faces) (defface font-lock-comment-delimiter-face - '((t :inherit font-lock-comment-face)) + '((default :inherit font-lock-comment-face) + (((class color) (min-colors 8) (background light)) + :foreground "red") + (((class color) (min-colors 8) (background dark)) + :foreground "red1")) "Font Lock mode face used to highlight comment delimiters." :group 'font-lock-highlighting-faces) -- 2.39.2