diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2005-04-11 20:47:25 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2005-04-11 20:47:25 +0000 |
commit | 22c061d6827c95c44b681a0b3cd21be31d428264 (patch) | |
tree | 7de9692a8c48521bb33b0073b447cf49815694f6 /lisp/faces.el | |
parent | b438e6706674fbafe027265e79bc0f0cf8416e44 (diff) | |
download | emacs-22c061d6827c95c44b681a0b3cd21be31d428264.tar.gz |
* 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.
Diffstat (limited to 'lisp/faces.el')
-rw-r--r-- | lisp/faces.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index 8bcf9901a81..b018d5a57a7 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -2015,7 +2015,7 @@ Note: Other faces cannot inherit from the cursor face." (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 @@ Note: Other faces cannot inherit from the cursor face." (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" |