aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2004-12-23 18:28:13 +0000
committerDan Nicolaescu2004-12-23 18:28:13 +0000
commit11c2175c79f09ceb0a7021a71dbe9ec8686f5fe3 (patch)
tree1b9afca79c95a9728f6a56cc7abfa249b2564707
parentaa7d6700031329370636abbef742b86bf31fc956 (diff)
downloademacs-11c2175c79f09ceb0a7021a71dbe9ec8686f5fe3.tar.gz
emacs-11c2175c79f09ceb0a7021a71dbe9ec8686f5fe3.zip
(mode-line, mode-line-inactive): Use min-colors.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/faces.el6
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 @@
12004-12-23 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * faces.el (mode-line, mode-line-inactive): Use min-colors.
4
12004-12-23 Thien-Thi Nguyen <ttn@gnu.org> 52004-12-23 Thien-Thi Nguyen <ttn@gnu.org>
2 6
3 * progmodes/hideshow.el (hs-inside-comment-p): Fix omission bug: 7 * 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."
1783 1783
1784 1784
1785(defface mode-line 1785(defface mode-line
1786 '((((type x w32 mac) (class color)) 1786 '((((class color) (min-colors 88))
1787 :box (:line-width -1 :style released-button) 1787 :box (:line-width -1 :style released-button)
1788 :background "grey75" :foreground "black") 1788 :background "grey75" :foreground "black")
1789 (t 1789 (t
@@ -1796,11 +1796,11 @@ created."
1796(defface mode-line-inactive 1796(defface mode-line-inactive
1797 '((default 1797 '((default
1798 :inherit mode-line) 1798 :inherit mode-line)
1799 (((type x w32 mac) (background light) (class color)) 1799 (((class color) (min-colors 88) (background light))
1800 :weight light 1800 :weight light
1801 :box (:line-width -1 :color "grey75" :style nil) 1801 :box (:line-width -1 :color "grey75" :style nil)
1802 :foreground "grey20" :background "grey90") 1802 :foreground "grey20" :background "grey90")
1803 (((type x w32 mac) (background dark) (class color)) 1803 (((class color) (min-colors 88) (background dark) )
1804 :weight light 1804 :weight light
1805 :box (:line-width -1 :color "grey40" :style nil) 1805 :box (:line-width -1 :color "grey40" :style nil)
1806 :foreground "grey80" :background "grey30")) 1806 :foreground "grey80" :background "grey30"))