]> git.eshelyaron.com Git - emacs.git/commitdiff
(font-lock-comment-delimiter-face): Fix last change.
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 12 May 2005 21:23:04 +0000 (21:23 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 12 May 2005 21:23:04 +0000 (21:23 +0000)
lisp/font-lock.el

index 006d8713f9a61ae7b7f64efc705f3cf601883111..762923809d5f720dfca8318ec963442248bd9adb 100644 (file)
@@ -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)