]> git.eshelyaron.com Git - emacs.git/commitdiff
(match): Use yellow background on light-bg terminals.
authorRichard M. Stallman <rms@gnu.org>
Sun, 11 Mar 2007 23:53:38 +0000 (23:53 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 11 Mar 2007 23:53:38 +0000 (23:53 +0000)
lisp/ChangeLog
lisp/replace.el

index 07a9891a54214b487a66ec9181e5050a7f366ce2..fe5b283ab53da419ae1336b4939c39e17e5e35a5 100644 (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): 
index 9e45e3479c3fb352c16f58979c4d27d4f6535694..a42f4ff4b57cb9108d1a32ee6ec89a86b2a8ace6 100644 (file)
@@ -849,10 +849,12 @@ Compatibility function for \\[next-error] invocations."
 \f
 (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)