diff options
author | Miles Bader <miles@gnu.org> | 2002-04-15 06:16:28 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2002-04-15 06:16:28 +0000 |
commit | 04b8b38245266bd0299275e3307efad03402fe13 (patch) | |
tree | 4ac7694658501ef6ad60431fa4007360bc7bc27e /lisp/faces.el | |
parent | 66aa61d882aa92603e2e21c0fef13e125b82d790 (diff) | |
download | emacs-04b8b38245266bd0299275e3307efad03402fe13.tar.gz |
(highlight): Force foreground to be black on a tty, so this face is
readable on a dark-background tty.
Diffstat (limited to 'lisp/faces.el')
-rw-r--r-- | lisp/faces.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index 932e0f3f6e4..de049f7f097 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -1885,7 +1885,7 @@ created." (defface highlight '((((type tty) (class color)) - :background "green") + :background "green" :foreground "black") (((class color) (background light)) :background "darkseagreen2") (((class color) (background dark)) |