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

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

Re: increasing font size hangs the emacs


From: nakkaya
Subject: Re: increasing font size hangs the emacs
Date: Wed, 02 Jul 2008 09:31:16 GMT
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.2 (darwin)

you can also set it in .emacs

(defun na-resize-frame-big ()
  "Set size"
  (interactive)
  (set-face-attribute 'default (selected-frame) :height 130 :width 'normal)
  (set-frame-width (selected-frame) 178)
  (set-frame-height (selected-frame) 50 )
  (set-frame-position (selected-frame) 0 1)) 

when you call this function it will make emacs full screen with bigger
fonts. to set a particular font you can use 

  (set-default-font "monaco")

or for firefox like cycling you can try

http://www.emacswiki.org/cgi-bin/wiki/CycleFontSizes


-- 
Nurullah Akkaya


reply via email to

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