From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Stefan Monnier" Newsgroups: gmane.emacs.devel Subject: Re: reducing defface redundancy Date: Tue, 09 Jul 2002 16:52:20 -0400 Sender: emacs-devel-admin@gnu.org Message-ID: <200207092052.g69KqKm28754@rum.cs.yale.edu> References: <877kn3qczq.fsf@tc-1-100.kawasaki.gol.ne.jp> <871yd9q09b.fsf@tc-1-100.kawasaki.gol.ne.jp> <200204220747.g3M7lo301995@aztec.santafe.edu> <200204230024.g3N0OH702333@aztec.santafe.edu> <200204241754.g3OHsIm03235@aztec.santafe.edu> <200207081820.g68IKkT12950@aztec.santafe.edu> <200207091851.g69IpWe13865@aztec.santafe.edu> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1026248372 18149 127.0.0.1 (9 Jul 2002 20:59:32 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 9 Jul 2002 20:59:32 +0000 (UTC) Cc: miles@gnu.org, abraham@dina.kvl.dk, emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 17S256-0004ic-00 for ; Tue, 09 Jul 2002 22:59:32 +0200 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 17S2Dg-00063c-00 for ; Tue, 09 Jul 2002 23:08:24 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.35 #1 (Debian)) id 17S1yw-0007Tj-00; Tue, 09 Jul 2002 16:53:10 -0400 Original-Received: from rum.cs.yale.edu ([128.36.229.169]) by fencepost.gnu.org with esmtp (Exim 3.35 #1 (Debian)) id 17S1y9-0007RF-00; Tue, 09 Jul 2002 16:52:21 -0400 Original-Received: (from monnier@localhost) by rum.cs.yale.edu (8.11.6/8.11.6) id g69KqKm28754; Tue, 9 Jul 2002 16:52:20 -0400 X-Mailer: exmh version 2.4 06/23/2000 with nmh-1.0.4 Original-To: Richard Stallman Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:5616 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:5616 > defface. That feature should remain. But is there any use for > functions to set face attributes per frame? I actually realized yesterday that I use this feature for my minibuffer-frame by setting its font and background differently (which in turns sets the frame-local value of the `default' face). (setq minibuffer-frame-alist '((minibuffer . only) (top . -1) (left . 0) (user-position . t) (height . 1) (width . 256) (user-size . t) (vertical-scroll-bars . nil) (menu-bar-lines . 0) (tool-bar-lines . 0) (font . "-misc-fixed-bold-r-normal-*-*-100-100-100-*-*-*-*") (background-color . "grey75") (name . "emacs-minibuffer"))) I wouldn't care too much about losing this feature (although I like the grey background for it). Stefan