]> git.eshelyaron.com Git - emacs.git/commitdiff
(font-lock-comment-face): Define a separate default
authorEli Zaretskii <eliz@gnu.org>
Tue, 17 Oct 2000 12:00:37 +0000 (12:00 +0000)
committerEli Zaretskii <eliz@gnu.org>
Tue, 17 Oct 2000 12:00:37 +0000 (12:00 +0000)
for dark-background tty's.

lisp/font-lock.el

index 6cff0e1e2fe49e3dd8da8a6a5b1f312ebfe18a19..691c9f250ddf50c18b844e834f7533e5c0e5754a 100644 (file)
@@ -1861,7 +1861,8 @@ Sets various variables using `font-lock-defaults' (or, if nil, using
 ;; But now we do it the custom way.  Note that `defface' will not overwrite any
 ;; faces declared above via `custom-declare-face'.
 (defface font-lock-comment-face
-  '((((type tty) (class color)) (:foreground "red"))
+  '((((type tty pc) (class color) (background light)) (:foreground "red"))
+    (((type tty pc) (class color) (background dark)) (:foreground "lightred"))
     (((class grayscale) (background light))
      (:foreground "DimGray" :bold t :italic t))
     (((class grayscale) (background dark))