From: Stefan Monnier Date: Thu, 12 May 2005 21:23:04 +0000 (+0000) Subject: (font-lock-comment-delimiter-face): Fix last change. X-Git-Tag: ttn-vms-21-2-B4~366 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3187cffc0d4c0b80b7d098e5a4a5614b6eb183dd;p=emacs.git (font-lock-comment-delimiter-face): Fix last change. --- 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)