changeset 61587:15ece4eaca8d

(cua-global-mark-face): Add special case for displays supporting a high number of colors.
author Dan Nicolaescu <dann@ics.uci.edu>
date Sat, 16 Apr 2005 16:03:29 +0000
parents 32cca11a66f8
children 3b23e9b93ad8
files lisp/ChangeLog lisp/emulation/cua-base.el
diffstat 2 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Sat Apr 16 15:28:10 2005 +0000
+++ b/lisp/ChangeLog	Sat Apr 16 16:03:29 2005 +0000
@@ -1,3 +1,8 @@
+2005-04-16  Dan Nicolaescu  <dann@ics.uci.edu>
+
+	* emulation/cua-base.el (cua-global-mark-face): Add special case
+	for displays supporting a high number of colors.
+
 2005-04-16  Matt Hodges  <MPHodges@member.fsf.org>  (tiny change)
 
 	* repeat.el (repeat): Invoke pre-command-hook and
--- a/lisp/emulation/cua-base.el	Sat Apr 16 15:28:10 2005 +0000
+++ b/lisp/emulation/cua-base.el	Sat Apr 16 16:03:29 2005 +0000
@@ -405,7 +405,8 @@
   :group 'cua)
 
 (defface cua-global-mark-face
-  '((((class color)) :foreground "black" :background "yellow")
+  '((((min-colors 88)(class color)) :foreground "black" :background "yellow1")
+    (((class color)) :foreground "black" :background "yellow")
     (t :bold t))
   "*Font used by CUA for highlighting the global mark."
   :group 'cua)