summaryrefslogtreecommitdiff
path: root/lisp/replace.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2007-03-11 23:53:38 +0000
committerRichard M. Stallman <rms@gnu.org>2007-03-11 23:53:38 +0000
commit330167fce8f6eca3098a2b4d74706395963979b1 (patch)
tree30330577daaeba9aa4dcf01f90ef313d08184a7d /lisp/replace.el
parent7ab2e82f0e19aead5fafaf7f959e4db29f3926b5 (diff)
downloademacs-330167fce8f6eca3098a2b4d74706395963979b1.tar.gz
(match): Use yellow background on light-bg terminals.
Diffstat (limited to 'lisp/replace.el')
-rw-r--r--lisp/replace.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/replace.el b/lisp/replace.el
index 9e45e3479c3..a42f4ff4b57 100644
--- a/lisp/replace.el
+++ b/lisp/replace.el
@@ -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)