aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2005-04-12 20:39:35 +0000
committerKim F. Storm2005-04-12 20:39:35 +0000
commit03622614060e973edee90606d41c6c2dfc670538 (patch)
tree5fb899a5c859870af744ec6ae87d02e4f0e56479
parent786aac0f63865d831e7dbf969b996c6fc48e9c92 (diff)
downloademacs-03622614060e973edee90606d41c6c2dfc670538.tar.gz
emacs-03622614060e973edee90606d41c6c2dfc670538.zip
(cua-rectangle-face)
(cua-rectangle-noselect-face): Define face attributes here.
-rw-r--r--lisp/emulation/cua-base.el15
1 files changed, 9 insertions, 6 deletions
diff --git a/lisp/emulation/cua-base.el b/lisp/emulation/cua-base.el
index 8852999db2d..d267afc741d 100644
--- a/lisp/emulation/cua-base.el
+++ b/lisp/emulation/cua-base.el
@@ -384,11 +384,15 @@ and after the region marked by the rectangle to search."
384 :type 'boolean 384 :type 'boolean
385 :group 'cua) 385 :group 'cua)
386 386
387(defface cua-rectangle-face 'nil 387(defface cua-rectangle-face
388 '((default :inherit region)
389 (((class color)) :foreground "white" :background "maroon"))
388 "*Font used by CUA for highlighting the rectangle." 390 "*Font used by CUA for highlighting the rectangle."
389 :group 'cua) 391 :group 'cua)
390 392
391(defface cua-rectangle-noselect-face 'nil 393(defface cua-rectangle-noselect-face
394 '((default :inherit region)
395 (((class color)) :foreground "white" :background "dimgray"))
392 "*Font used by CUA for highlighting the non-selected rectangle lines." 396 "*Font used by CUA for highlighting the non-selected rectangle lines."
393 :group 'cua) 397 :group 'cua)
394 398
@@ -400,10 +404,9 @@ and after the region marked by the rectangle to search."
400 :type 'boolean 404 :type 'boolean
401 :group 'cua) 405 :group 'cua)
402 406
403(defface cua-global-mark-face '((((class color)) 407(defface cua-global-mark-face
404 :foreground "black" 408 '((((class color)) :foreground "black" :background "yellow")
405 :background "yellow") 409 (t :bold t))
406 (t :bold t))
407 "*Font used by CUA for highlighting the global mark." 410 "*Font used by CUA for highlighting the global mark."
408 :group 'cua) 411 :group 'cua)
409 412