]> git.eshelyaron.com Git - emacs.git/commitdiff
(mode-line, mode-line-inactive): Use min-colors.
authorDan Nicolaescu <dann@ics.uci.edu>
Thu, 23 Dec 2004 18:28:13 +0000 (18:28 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Thu, 23 Dec 2004 18:28:13 +0000 (18:28 +0000)
lisp/ChangeLog
lisp/faces.el

index dea5cf3fd7bb79f2d481f1e78a6ea1f0310a465c..2cb780af94c9bb082f0a6e138a4fe939391aa992 100644 (file)
@@ -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:
index b215d25bf219a5ddb7124149a645e5e46cb767bd..d2ae90805f2c70680765775efd226b6566f9dda1 100644 (file)
@@ -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"))