]> git.eshelyaron.com Git - emacs.git/commitdiff
(font-lock-comment-face): For tty's with dark
authorEli Zaretskii <eliz@gnu.org>
Fri, 15 Jun 2001 10:16:29 +0000 (10:16 +0000)
committerEli Zaretskii <eliz@gnu.org>
Fri, 15 Jun 2001 10:16:29 +0000 (10:16 +0000)
background, use "red1", since "lightred" is not one of the colors
recognized by tty-colors.el.

lisp/ChangeLog
lisp/font-lock.el

index ba8a8b0b7cf723de4f5106af09539170f9c512e6..29544ed916f1c50af6db006381eecdc0a0d43121 100644 (file)
@@ -1,5 +1,9 @@
 2001-06-15  Eli Zaretskii  <eliz@is.elta.co.il>
 
+       * font-lock.el (font-lock-comment-face): For tty's with dark
+       background, use "red1", since "lightred" is not one of the colors
+       recognized by tty-colors.el.
+
        * tar-mode.el (tar-extract): Call generate-new-buffer-name to
        create a buffer for extracted file, in case there's more than one
        file by that name in an archive, possibly in different
index 5b8cf16e7e89bf3cd7291b96cd144183a2c7adad..d1315fbc794e9d712b98d6589d563ade04d4f8a2 100644 (file)
@@ -1815,7 +1815,7 @@ Sets various variables using `font-lock-defaults' (or, if nil, using
 ;; faces declared above via `custom-declare-face'.
 (defface font-lock-comment-face
   '((((type tty pc) (class color) (background light)) (:foreground "red"))
-    (((type tty pc) (class color) (background dark)) (:foreground "lightred"))
+    (((type tty pc) (class color) (background dark)) (:foreground "red1"))
     (((class grayscale) (background light))
      (:foreground "DimGray" :bold t :italic t))
     (((class grayscale) (background dark))