# HG changeset patch # User Dan Nicolaescu # Date 1103826493 0 # Node ID 294a7f7e3daf353201e361f6ead5ee0f4c357b12 # Parent 9c431ad833770f0d3eeeb67eca1d8e9702926a24 (mode-line, mode-line-inactive): Use min-colors. diff -r 9c431ad83377 -r 294a7f7e3daf lisp/ChangeLog --- 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 + + * faces.el (mode-line, mode-line-inactive): Use min-colors. + 2004-12-23 Thien-Thi Nguyen * progmodes/hideshow.el (hs-inside-comment-p): Fix omission bug: diff -r 9c431ad83377 -r 294a7f7e3daf lisp/faces.el --- 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"))