diff options
| author | Richard M. Stallman | 2007-03-11 23:53:38 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-03-11 23:53:38 +0000 |
| commit | 330167fce8f6eca3098a2b4d74706395963979b1 (patch) | |
| tree | 30330577daaeba9aa4dcf01f90ef313d08184a7d | |
| parent | 7ab2e82f0e19aead5fafaf7f959e4db29f3926b5 (diff) | |
| download | emacs-330167fce8f6eca3098a2b4d74706395963979b1.tar.gz emacs-330167fce8f6eca3098a2b4d74706395963979b1.zip | |
(match): Use yellow background on light-bg terminals.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/replace.el | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 07a9891a542..fe5b283ab53 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-03-11 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * replace.el (match): Use yellow background on light-bg terminals. | ||
| 4 | |||
| 1 | 2007-03-11 Richard Stallman <rms@gnu.org> | 5 | 2007-03-11 Richard Stallman <rms@gnu.org> |
| 2 | 6 | ||
| 3 | * emacs-lisp/bytecomp.el (byte-compile-warning-prefix): | 7 | * emacs-lisp/bytecomp.el (byte-compile-warning-prefix): |
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." | |||
| 849 | 849 | ||
| 850 | (defface match | 850 | (defface match |
| 851 | '((((class color) (min-colors 88) (background light)) | 851 | '((((class color) (min-colors 88) (background light)) |
| 852 | :background "Tan") | 852 | :background "yellow") |
| 853 | (((class color) (min-colors 88) (background dark)) | 853 | (((class color) (min-colors 88) (background dark)) |
| 854 | :background "RoyalBlue3") | 854 | :background "RoyalBlue3") |
| 855 | (((class color) (min-colors 8)) | 855 | (((class color) (min-colors 8) (background light)) |
| 856 | :background "yellow" :foreground "black") | ||
| 857 | (((class color) (min-colors 8) (background dark)) | ||
| 856 | :background "blue" :foreground "white") | 858 | :background "blue" :foreground "white") |
| 857 | (((type tty) (class mono)) | 859 | (((type tty) (class mono)) |
| 858 | :inverse-video t) | 860 | :inverse-video t) |