|
|
On Wed, 6 Aug 2008 11:53:17 -0700 (PDT) sebastiansulger@xxxxxxxxxxxxxx wrote:
s> i use gnu emacs 22.1.1 and mac os x leopard. what i would really like
s> is a possibility to fix the text size (and, consequently, the buffer
s> size) of the emacs after it is started from the terminal. i can change
s> the text size by shift-clicking within the buffer, then choosing
s> 'Misc' and, for example, '6x12' (which is the size i prefer). this
s> makes the text smaller and simultaneously changes the overall size of
s> the buffer.
s> how can i set this variable in the .emacs config file? other people
s> told me about the possibility of changing the buffer size
s> within .emacs; this is not what i need.
I do it like this:
(when (and window-system (eq system-type 'darwin))
(set-face-font 'default
"-apple-monaco-medium-r-normal--14-140-72-72-m-140-mac-roman"))
(the condition says "when running on Darwin and in the window system")
This works for the Carbon port in 22.x, but you may like Emacs.app
better (it is in Emacs CVS, will be in the next release as the
Cocoa/NextStep build, and is available as a standalone download).
Ted
|
|