help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: Setting fonts for particular frames


From: Matthias Meulien
Subject: Re: Setting fonts for particular frames
Date: 29 Oct 2002 11:10:27 +0100
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2

"Peter Ashford" <me@here.there.com> 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


reply via email to

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