]> git.eshelyaron.com Git - emacs.git/commitdiff
(cua--init-rectangles): Remove face setup.
authorKim F. Storm <storm@cua.dk>
Tue, 12 Apr 2005 20:39:08 +0000 (20:39 +0000)
committerKim F. Storm <storm@cua.dk>
Tue, 12 Apr 2005 20:39:08 +0000 (20:39 +0000)
lisp/emulation/cua-rect.el

index bfb51694db446b888e974ccb60a7753719279ba8..5c24c2dc36f4325c740a33c888e4e510191f923d 100644 (file)
@@ -1402,16 +1402,6 @@ With prefix arg, indent to that column."
   (cua--M/H-key cua--rectangle-keymap key cmd))
 
 (defun cua--init-rectangles ()
-  (unless (face-background 'cua-rectangle-face)
-    (copy-face 'region 'cua-rectangle-face)
-    (set-face-background 'cua-rectangle-face "maroon")
-    (set-face-foreground 'cua-rectangle-face "white"))
-
-  (unless (face-background 'cua-rectangle-noselect-face)
-    (copy-face 'region 'cua-rectangle-noselect-face)
-    (set-face-background 'cua-rectangle-noselect-face "dimgray")
-    (set-face-foreground 'cua-rectangle-noselect-face "white"))
-
   (unless (eq cua-use-hyper-key 'only)
     (define-key cua--rectangle-keymap [(shift return)] 'cua-clear-rectangle-mark)
     (define-key cua--region-keymap    [(shift return)] 'cua-toggle-rectangle-mark))