diff lisp/faces.el @ 61481:d4014c213e7e

* term.el (term-ansi-current-bold, term-ansi-current-underline) (term-ansi-current-reverse, term-ansi-current-invisible) (term-ansi-face-already-done): Change to boolean. (term-reset-terminal, term-handle-colors-array): Handle the above vars accordingly. (term-buffer-vertical-motion): Rename from buffer-vertical-motion. (term-emulate-terminal): Use the new name. * faces.el (secondary-selection): Use yellow1, not yellow. (trailing-whitespace): Use red1, not red.
author Dan Nicolaescu <dann@ics.uci.edu>
date Mon, 11 Apr 2005 20:47:25 +0000
parents 8e1bab51992b
children 3eeae124dcab 2c2b97b30980 146c086df160
line wrap: on
line diff
--- a/lisp/faces.el	Mon Apr 11 19:29:48 2005 +0000
+++ b/lisp/faces.el	Mon Apr 11 20:47:25 2005 +0000
@@ -2015,7 +2015,7 @@
 
 (defface secondary-selection
   '((((class color) (min-colors 88) (background light))
-     :background "yellow")
+     :background "yellow1")
     (((class color) (min-colors 88) (background dark))
      :background "SkyBlue4")
     (((class color) (min-colors 16) (background light))
@@ -2041,9 +2041,9 @@
 
 (defface trailing-whitespace
   '((((class color) (background light))
-     :background "red")
+     :background "red1")
     (((class color) (background dark))
-     :background "red")
+     :background "red1")
     (t :inverse-video t))
   "Basic face for highlighting trailing whitespace."
   :version "21.1"