From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: G Anna Newsgroups: gmane.emacs.help Subject: Re: font size Date: 24 Apr 2002 11:55:54 +0530 Sender: help-gnu-emacs-admin@gnu.org Message-ID: References: <3CC58AB7.7080100@linuxiran.org> Reply-To: help-gnu-emacs@gnu.org NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1019636850 18535 127.0.0.1 (24 Apr 2002 08:27:30 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 24 Apr 2002 08:27:30 +0000 (UTC) Cc: help-gnu-emacs@gnu.org Return-path: Original-Received: from fencepost.gnu.org ([199.232.76.164]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 170I7e-0004oq-00 for ; Wed, 24 Apr 2002 10:27:30 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 170I7M-0001nI-00; Wed, 24 Apr 2002 04:27:12 -0400 Original-Received: from [202.9.174.30] (helo=mailvs.eth.net) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 170I5y-0001jd-00 for ; Wed, 24 Apr 2002 04:25:47 -0400 Original-Received: from smtp1.eth.net ([202.9.178.22]) by mailvs.eth.net with Microsoft SMTPSVC(5.0.2195.4453); Wed, 24 Apr 2002 14:01:34 +0530 Original-Received: from 202.9.171.118 by smtp1.eth.net (InterScan E-Mail VirusWall NT); Wed, 24 Apr 2002 13:57:11 +0530 Original-To: Arash Bijanzadeh In-Reply-To: <3CC58AB7.7080100@linuxiran.org> Original-Lines: 25 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.1 X-OriginalArrivalTime: 24 Apr 2002 08:31:34.0203 (UTC) FILETIME=[713DF0B0:01C1EB6A] Errors-To: help-gnu-emacs-admin@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.0.9 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:154 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:154 > Date: Tue, 23 Apr 2002 20:54:23 +0430 > From: Arash Bijanzadeh > Subj: font size > > Hello ecerybody! > I wanna know if it is possible to change the font size in the X client > of emacs? and how? please help me! In your ~/.emacs add the following lines. Remember to choose an appropriate font. (setq default-frame-alist '((width . 80) (height . 40) (font . "-misc-fixed-medium-r-normal--15-120-100-100-c-90-iso8859-1") (background-color . "black") (foreground-color . "light blue") (menu-bar-lines . 1))) Also try shift+left-mouse-button to get the font menu. HTH anna