changeset 62266:8db74faa378a

(font-lock-comment-delimiter-face): Fix last change.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Thu, 12 May 2005 21:23:04 +0000
parents 43e264259629
children 2047356fac4e
files lisp/font-lock.el
diffstat 1 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/font-lock.el	Thu May 12 20:04:32 2005 +0000
+++ b/lisp/font-lock.el	Thu May 12 21:23:04 2005 +0000
@@ -1677,7 +1677,11 @@
   :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)