Mercurial > emacs
changeset 59077:294a7f7e3daf
(mode-line, mode-line-inactive): Use min-colors.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Thu, 23 Dec 2004 18:28:13 +0000 |
parents | 9c431ad83377 |
children | 867a7d5055b2 |
files | lisp/ChangeLog lisp/faces.el |
diffstat | 2 files changed, 7 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Thu Dec 23 18:22:05 2004 +0000 +++ b/lisp/ChangeLog Thu Dec 23 18:28:13 2004 +0000 @@ -1,3 +1,7 @@ +2004-12-23 Dan Nicolaescu <dann@ics.uci.edu> + + * faces.el (mode-line, mode-line-inactive): Use min-colors. + 2004-12-23 Thien-Thi Nguyen <ttn@gnu.org> * progmodes/hideshow.el (hs-inside-comment-p): Fix omission bug:
--- a/lisp/faces.el Thu Dec 23 18:22:05 2004 +0000 +++ b/lisp/faces.el Thu Dec 23 18:28:13 2004 +0000 @@ -1783,7 +1783,7 @@ (defface mode-line - '((((type x w32 mac) (class color)) + '((((class color) (min-colors 88)) :box (:line-width -1 :style released-button) :background "grey75" :foreground "black") (t @@ -1796,11 +1796,11 @@ (defface mode-line-inactive '((default :inherit mode-line) - (((type x w32 mac) (background light) (class color)) + (((class color) (min-colors 88) (background light)) :weight light :box (:line-width -1 :color "grey75" :style nil) :foreground "grey20" :background "grey90") - (((type x w32 mac) (background dark) (class color)) + (((class color) (min-colors 88) (background dark) ) :weight light :box (:line-width -1 :color "grey40" :style nil) :foreground "grey80" :background "grey30"))