aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2001-06-15 10:16:29 +0000
committerEli Zaretskii2001-06-15 10:16:29 +0000
commitce6b1982602629f55ee7bf090021d956dddbb632 (patch)
treefdbf798e028c3a5a0cf7bf2fe108953858e620f5
parent884e8578bfb6232e75c6d1b523b7812b1ce5573a (diff)
downloademacs-ce6b1982602629f55ee7bf090021d956dddbb632.tar.gz
emacs-ce6b1982602629f55ee7bf090021d956dddbb632.zip
(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.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/font-lock.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ba8a8b0b7cf..29544ed916f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,9 @@
12001-06-15 Eli Zaretskii <eliz@is.elta.co.il> 12001-06-15 Eli Zaretskii <eliz@is.elta.co.il>
2 2
3 * font-lock.el (font-lock-comment-face): For tty's with dark
4 background, use "red1", since "lightred" is not one of the colors
5 recognized by tty-colors.el.
6
3 * tar-mode.el (tar-extract): Call generate-new-buffer-name to 7 * tar-mode.el (tar-extract): Call generate-new-buffer-name to
4 create a buffer for extracted file, in case there's more than one 8 create a buffer for extracted file, in case there's more than one
5 file by that name in an archive, possibly in different 9 file by that name in an archive, possibly in different
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
1815;; faces declared above via `custom-declare-face'. 1815;; faces declared above via `custom-declare-face'.
1816(defface font-lock-comment-face 1816(defface font-lock-comment-face
1817 '((((type tty pc) (class color) (background light)) (:foreground "red")) 1817 '((((type tty pc) (class color) (background light)) (:foreground "red"))
1818 (((type tty pc) (class color) (background dark)) (:foreground "lightred")) 1818 (((type tty pc) (class color) (background dark)) (:foreground "red1"))
1819 (((class grayscale) (background light)) 1819 (((class grayscale) (background light))
1820 (:foreground "DimGray" :bold t :italic t)) 1820 (:foreground "DimGray" :bold t :italic t))
1821 (((class grayscale) (background dark)) 1821 (((class grayscale) (background dark))