From 11c2175c79f09ceb0a7021a71dbe9ec8686f5fe3 Mon Sep 17 00:00:00 2001 From: Dan Nicolaescu Date: Thu, 23 Dec 2004 18:28:13 +0000 Subject: [PATCH] (mode-line, mode-line-inactive): Use min-colors. --- lisp/ChangeLog | 4 ++++ lisp/faces.el | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index dea5cf3fd7b..2cb780af94c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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 --git a/lisp/faces.el b/lisp/faces.el index b215d25bf21..d2ae90805f2 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -1783,7 +1783,7 @@ created." (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 @@ created." (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")) -- 2.39.5