From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Matthias Meulien Newsgroups: gmane.emacs.help Subject: Re: Setting fonts for particular frames Date: 29 Oct 2002 11:10:27 +0100 Organization: ...!#$@~? Sender: help-gnu-emacs-admin@gnu.org Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035886090 18861 80.91.224.249 (29 Oct 2002 10:08:10 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 29 Oct 2002 10:08:10 +0000 (UTC) Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 186TI9-0004u5-00 for ; Tue, 29 Oct 2002 11:08:09 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 186TGX-00034G-00; Tue, 29 Oct 2002 05:06:29 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!newsfeed.icl.net!newsfeed.fjserv.net!proxad.net!proxad.net!feeder2-1.proxad.net!news2-2.free.fr!not-for-mail Mail-Copies-To: never Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Original-Lines: 24 Original-NNTP-Posting-Date: 29 Oct 2002 11:02:47 MET Original-NNTP-Posting-Host: 62.147.135.31 Original-X-Trace: 1035885767 news2-2.free.fr 6114 62.147.135.31 Original-X-Complaints-To: abuse@proxad.net Original-Xref: shelby.stanford.edu gnu.emacs.help:106485 Original-To: help-gnu-emacs@gnu.org Errors-To: help-gnu-emacs-admin@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.help:3035 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:3035 "Peter Ashford" wrote: > (...) I tried to apply the same method to the contents of the > *compilation* buffer (which appears in a seperate frame for me) but > there's no corrosponding customize face option for the compilation > buffer. How do I specify a custom font in this case? You can make *compilation* a special display buffer name with the following (untested) : (add-to-list 'special-display-buffer-names '("*compilation*" (menu-bar-lines . 0) (vertical-scroll-bars . nil) (tool-bar-lines . 0) (foreground-color . "gray") (background-color . "black") (height . 24) (width . 80) (font . "-Misc-Fixed-Medium-R-SemiCondensed--13-120-75-75-C-*-*"))) Make sure that *compilation* is not a same-window-buffer-names... -- Matthias