aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann1999-11-04 00:25:55 +0000
committerGerd Moellmann1999-11-04 00:25:55 +0000
commitb261ffa4848762c864820ca7267e061f794dcbd8 (patch)
treeaa8ce1ee32c93295b8380d34083ae58609f0146a
parentf08d8594378870b383b9b1fb5076da7676c17ebb (diff)
downloademacs-b261ffa4848762c864820ca7267e061f794dcbd8.tar.gz
emacs-b261ffa4848762c864820ca7267e061f794dcbd8.zip
* faces.el (secondary-selection): Change background to yellow.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/faces.el4
2 files changed, 4 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a73988eb4be..29bfa1aeeab 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
11999-11-04 Gerd Moellmann <gerd@gnu.org> 11999-11-04 Gerd Moellmann <gerd@gnu.org>
2 2
3 * faces.el (secondary-selection): Change background to yellow.
4
3 * complete.el (PC-do-completion): Use minibuffer-prompt-end to 5 * complete.el (PC-do-completion): Use minibuffer-prompt-end to
4 find the start of the text. Use field-string to read the user 6 find the start of the text. Use field-string to read the user
5 input. 7 input.
diff --git a/lisp/faces.el b/lisp/faces.el
index e016814fe95..fdc06086b65 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -1500,9 +1500,9 @@ created."
1500 '((((type tty) (class color)) 1500 '((((type tty) (class color))
1501 (:background "cyan")) 1501 (:background "cyan"))
1502 (((class color) (background light)) 1502 (((class color) (background light))
1503 (:background "paleturquoise")) 1503 (:background "darkyellow"))
1504 (((class color) (background dark)) 1504 (((class color) (background dark))
1505 (:background "darkslateblue")) 1505 (:background "yellow"))
1506 (t (:inverse-video t))) 1506 (t (:inverse-video t)))
1507 "Basic face for displaying the secondary selection." 1507 "Basic face for displaying the secondary selection."
1508 :group 'basic-faces) 1508 :group 'basic-faces)