# HG changeset patch # User Kim F. Storm # Date 1113338375 0 # Node ID a82b5511d9432c96931efe02fa8144a1c2b143ef # Parent 51193e7d71d0dbf175f71c827537f5c2e8d2349d (cua-rectangle-face) (cua-rectangle-noselect-face): Define face attributes here. diff -r 51193e7d71d0 -r a82b5511d943 lisp/emulation/cua-base.el --- a/lisp/emulation/cua-base.el Tue Apr 12 20:39:08 2005 +0000 +++ b/lisp/emulation/cua-base.el Tue Apr 12 20:39:35 2005 +0000 @@ -384,11 +384,15 @@ :type 'boolean :group 'cua) -(defface cua-rectangle-face 'nil +(defface cua-rectangle-face + '((default :inherit region) + (((class color)) :foreground "white" :background "maroon")) "*Font used by CUA for highlighting the rectangle." :group 'cua) -(defface cua-rectangle-noselect-face 'nil +(defface cua-rectangle-noselect-face + '((default :inherit region) + (((class color)) :foreground "white" :background "dimgray")) "*Font used by CUA for highlighting the non-selected rectangle lines." :group 'cua) @@ -400,10 +404,9 @@ :type 'boolean :group 'cua) -(defface cua-global-mark-face '((((class color)) - :foreground "black" - :background "yellow") - (t :bold t)) +(defface cua-global-mark-face + '((((class color)) :foreground "black" :background "yellow") + (t :bold t)) "*Font used by CUA for highlighting the global mark." :group 'cua)