From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Eli Zaretskii" Newsgroups: gmane.emacs.help Subject: Re: Frame size (OS Window size) Date: Sat, 18 Sep 2004 13:58:08 +0300 Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: <01c49d6e$Blat.v2.2.2$8e4eaa60@zahav.net.il> References: Reply-To: Eli Zaretskii NNTP-Posting-Host: deer.gmane.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7BIT X-Trace: sea.gmane.org 1095505295 30029 80.91.229.6 (18 Sep 2004 11:01:35 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 18 Sep 2004 11:01:35 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Sep 18 13:01:20 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1C8cy0-0007Xw-00 for ; Sat, 18 Sep 2004 13:01:20 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1C8d3m-0004BJ-97 for geh-help-gnu-emacs@m.gmane.org; Sat, 18 Sep 2004 07:07:18 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1C8d3d-00049g-FK for help-gnu-emacs@gnu.org; Sat, 18 Sep 2004 07:07:09 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1C8d3W-00049U-IW for help-gnu-emacs@gnu.org; Sat, 18 Sep 2004 07:07:09 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1C8d3W-00049R-Fb for help-gnu-emacs@gnu.org; Sat, 18 Sep 2004 07:07:02 -0400 Original-Received: from [192.114.186.24] (helo=legolas.inter.net.il) by monty-python.gnu.org with esmtp (Exim 4.34) id 1C8cxc-0004fw-5x for help-gnu-emacs@gnu.org; Sat, 18 Sep 2004 07:00:56 -0400 Original-Received: from zaretski ([80.230.157.233]) by legolas.inter.net.il (MOS 3.5.3-GR) with ESMTP id CPC76655 (AUTH halo1); Sat, 18 Sep 2004 14:00:47 +0300 (IDT) Original-To: help-gnu-emacs@gnu.org X-Mailer: emacs 21.3.50 (via feedmail 8 I) and Blat ver 2.2.2 In-reply-to: (message from Torsten Mohr on Sat, 18 Sep 2004 09:40:57 +0200) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:20758 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:20758 > From: Torsten Mohr > Date: Sat, 18 Sep 2004 09:40:57 +0200 > > How can i save the settings for emacs, so that the size of > the frame stays the same whenever i start emacs/xemacs? > > I use emacs-21.2 on windows and xemacs-21.4 on linux. Don't know about XEmacs, but for Emacs you should look up `default-frame-alist' in the docs and use it like this in your .emacs init file (untested!): (add-to-list 'default-frame-alist '(height . 36)) (add-to-list 'default-frame-alist '(width . 95))