Mercurial > emacs
changeset 76466:08ea848cd1f3
(match): Use yellow background on light-bg terminals.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 11 Mar 2007 23:53:10 +0000 |
parents | 6582d03c2a6e |
children | fd2206c3690b |
files | lisp/replace.el |
diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/replace.el Sun Mar 11 21:17:06 2007 +0000 +++ b/lisp/replace.el Sun Mar 11 23:53:10 2007 +0000 @@ -849,10 +849,12 @@ (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)