summaryrefslogtreecommitdiff
path: root/lisp/font-lock.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2001-06-15 10:16:29 +0000
committerEli Zaretskii <eliz@gnu.org>2001-06-15 10:16:29 +0000
commitce6b1982602629f55ee7bf090021d956dddbb632 (patch)
treefdbf798e028c3a5a0cf7bf2fe108953858e620f5 /lisp/font-lock.el
parent884e8578bfb6232e75c6d1b523b7812b1ce5573a (diff)
downloademacs-ce6b1982602629f55ee7bf090021d956dddbb632.tar.gz
(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.
Diffstat (limited to 'lisp/font-lock.el')
-rw-r--r--lisp/font-lock.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/font-lock.el b/lisp/font-lock.el
index 5b8cf16e7e8..d1315fbc794 100644
--- a/lisp/font-lock.el
+++ b/lisp/font-lock.el
@@ -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))