From mboxrd@z Thu Jan 1 00:00:00 1970 Path: quimby.gnus.org!not-for-mail From: "Eli Zaretskii" Newsgroups: gmane.emacs.devel Subject: mode-line-inactive and face inheritance Date: Sat, 16 Feb 2002 09:55:27 +0200 Message-ID: <9003-Sat16Feb2002095527+0200-eliz@is.elta.co.il> Reply-To: Eli Zaretskii NNTP-Posting-Host: quimby2.netfonds.no X-Trace: quimby2.netfonds.no 1013847159 22253 195.204.10.66 (16 Feb 2002 08:12:39 GMT) X-Complaints-To: usenet@quimby2.netfonds.no NNTP-Posting-Date: 16 Feb 2002 08:12:39 GMT Original-Received: from fencepost.gnu.org ([199.232.76.164]) by quimby2.netfonds.no with esmtp (Exim 3.12 #1 (Debian)) id 16bzxX-0005mp-00 for ; Sat, 16 Feb 2002 09:12:39 +0100 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.33 #1 (Debian)) id 16bzlU-0006Kc-00; Sat, 16 Feb 2002 03:00:12 -0500 Original-Received: from balder.inter.net.il ([192.114.186.15]) by fencepost.gnu.org with esmtp (Exim 3.33 #1 (Debian)) id 16bziQ-0006GV-00 for ; Sat, 16 Feb 2002 02:57:03 -0500 Original-Received: from zaretsky (diup-219-63.inter.net.il [213.8.219.63]) by balder.inter.net.il (Mirapoint) with ESMTP id BFD80908; Sat, 16 Feb 2002 09:56:57 +0200 (IST) Original-To: emacs-devel@gnu.org X-Mailer: emacs 21.2.50 (via feedmail 8 I) and Blat ver 1.8.9 Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.5 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: quimby.gnus.org gmane.emacs.devel:1195 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:1195 Here's the definition of mode-line-inactive face: (defface mode-line-inactive '((((type x w32 mac) (background light) (class color)) :inherit mode-line :weight light :box (:line-width -1 :color "grey75" :style nil) :foreground "grey20" :background "grey90") (((type x w32 mac) (background dark) (class color)) :inherit mode-line :weight light :box (:line-width -1 :color "grey40" :style nil) :foreground "grey80" :background "grey30") (t :inverse-video t)) "Basic mode line face for non-selected windows." :version "21.2" :group 'modeline :group 'basic-faces) The definition for non-GUI versions doesn't include `:inherit mode-line'. Is that intentional? I think it's not a good idea to have this difference, especially since the documentation mentions the inheritance, and doesn't say it's display-dependent. FWIW, I don't see any reason why an :inherit attribute would hurt here. _______________________________________________ Emacs-devel mailing list Emacs-devel@gnu.org http://mail.gnu.org/mailman/listinfo/emacs-devel