aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2005-04-16 16:03:29 +0000
committerDan Nicolaescu2005-04-16 16:03:29 +0000
commitfbcaad36b832a6894896dfbc0562bacd3f41c599 (patch)
tree0421f06491fe7f10f1c6c03958d7248a8e41e5fe
parentccb9871da323d805da12934a4be39442ae0852c6 (diff)
downloademacs-fbcaad36b832a6894896dfbc0562bacd3f41c599.tar.gz
emacs-fbcaad36b832a6894896dfbc0562bacd3f41c599.zip
(cua-global-mark-face): Add special case
for displays supporting a high number of colors.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/emulation/cua-base.el3
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3d2e37b25d7..354554f546f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12005-04-16 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * emulation/cua-base.el (cua-global-mark-face): Add special case
4 for displays supporting a high number of colors.
5
12005-04-16 Matt Hodges <MPHodges@member.fsf.org> (tiny change) 62005-04-16 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
2 7
3 * repeat.el (repeat): Invoke pre-command-hook and 8 * repeat.el (repeat): Invoke pre-command-hook and
diff --git a/lisp/emulation/cua-base.el b/lisp/emulation/cua-base.el
index d267afc741d..77e8f636931 100644
--- a/lisp/emulation/cua-base.el
+++ b/lisp/emulation/cua-base.el
@@ -405,7 +405,8 @@ and after the region marked by the rectangle to search."
405 :group 'cua) 405 :group 'cua)
406 406
407(defface cua-global-mark-face 407(defface cua-global-mark-face
408 '((((class color)) :foreground "black" :background "yellow") 408 '((((min-colors 88)(class color)) :foreground "black" :background "yellow1")
409 (((class color)) :foreground "black" :background "yellow")
409 (t :bold t)) 410 (t :bold t))
410 "*Font used by CUA for highlighting the global mark." 411 "*Font used by CUA for highlighting the global mark."
411 :group 'cua) 412 :group 'cua)