(match): Use yellow background on light-bg terminals.

This commit is contained in:
Richard M. Stallman 2007-03-11 23:53:38 +00:00
parent 7ab2e82f0e
commit 330167fce8
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2007-03-11 Juri Linkov <juri@jurta.org>
* replace.el (match): Use yellow background on light-bg terminals.
2007-03-11 Richard Stallman <rms@gnu.org>
* emacs-lisp/bytecomp.el (byte-compile-warning-prefix):

View file

@ -849,10 +849,12 @@ Compatibility function for \\[next-error] invocations."
(defface match
'((((class color) (min-colors 88) (background light))
:background "Tan")
:background "yellow")
(((class color) (min-colors 88) (background dark))
:background "RoyalBlue3")
(((class color) (min-colors 8))
(((class color) (min-colors 8) (background light))
:background "yellow" :foreground "black")
(((class color) (min-colors 8) (background dark))
:background "blue" :foreground "white")
(((type tty) (class mono))
:inverse-video t)