emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[patch] mode-line faces on 256-color terminals


From: Dan Nicolaescu
Subject: [patch] mode-line faces on 256-color terminals
Date: Wed, 22 Dec 2004 15:08:50 -0800

The mode-line* faces were somehow missed when converting the face
definitions in faces.el to use min-colors, so that they work on
terminals that support 88 (or 256) colors.

This patch fixes the above issue. Is it OK? 

2004-12-22  Dan Nicolaescu  <address@hidden>

        * faces.el (mode-line, mode-line-inactive): Use min-colors.


Index: faces.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/faces.el,v
retrieving revision 1.296
diff -c -3 -p -c -r1.296 faces.el
*** faces.el    21 Dec 2004 11:37:25 -0000      1.296
--- faces.el    22 Dec 2004 23:02:48 -0000
*************** created."
*** 1783,1789 ****
  
  
  (defface mode-line
!   '((((type x w32 mac) (class color))
       :box (:line-width -1 :style released-button)
       :background "grey75" :foreground "black")
      (t
--- 1783,1789 ----
  
  
  (defface mode-line
!   '((((class color) (min-colors 88))
       :box (:line-width -1 :style released-button)
       :background "grey75" :foreground "black")
      (t
*************** created."
*** 1796,1806 ****
  (defface mode-line-inactive
    '((default
       :inherit mode-line)
!     (((type x w32 mac) (background light) (class color))
       :weight light
       :box (:line-width -1 :color "grey75" :style nil)
       :foreground "grey20" :background "grey90")
!     (((type x w32 mac) (background dark) (class color))
       :weight light
       :box (:line-width -1 :color "grey40" :style nil)
       :foreground "grey80" :background "grey30"))
--- 1796,1806 ----
  (defface mode-line-inactive
    '((default
       :inherit mode-line)
!     (((class color) (min-colors 88) (background light))
       :weight light
       :box (:line-width -1 :color "grey75" :style nil)
       :foreground "grey20" :background "grey90")
!     (((class color) (min-colors 88) (background dark) )
       :weight light
       :box (:line-width -1 :color "grey40" :style nil)
       :foreground "grey80" :background "grey30"))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]