# HG changeset patch # User Richard M. Stallman # Date 1173657190 0 # Node ID 08ea848cd1f3168a08e6aa807f1dc1e4f0811857 # Parent 6582d03c2a6e08f5cf42d05afd67f2596cd79d22 (match): Use yellow background on light-bg terminals. diff -r 6582d03c2a6e -r 08ea848cd1f3 lisp/replace.el --- 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)