From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kevin Rodgers Newsgroups: gmane.emacs.help Subject: Re: Speedbar frame height Date: Mon, 28 Mar 2005 16:50:10 -0700 Message-ID: <3arjhkF6d0b9pU1@individual.net> References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1112054045 21104 80.91.229.2 (28 Mar 2005 23:54:05 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 28 Mar 2005 23:54:05 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Mar 29 01:54:04 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DG43R-0001ZD-26 for geh-help-gnu-emacs@m.gmane.org; Tue, 29 Mar 2005 01:53:57 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DG4Jb-0007zx-AL for geh-help-gnu-emacs@m.gmane.org; Mon, 28 Mar 2005 19:10:39 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 21 Original-X-Trace: individual.net YVM/ddtA/ysKmXG4YfCsUw0Hc9RMuKgibtp08DNmpeoyvnkXs= User-Agent: Mozilla Thunderbird 0.9 (X11/20041105) X-Accept-Language: en-us, en In-Reply-To: Original-Xref: shelby.stanford.edu gnu.emacs.help:129694 Original-To: help-gnu-emacs@gnu.org 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: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:25247 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:25247 Ryan Bowman wrote: > I use (setq initial-frame-alist > '((width . 89) (height . 58))) > to set the size for the emacs frame, however, the speedbar frame seems > to be incorrectly calculating its height. The doc for > speedbar-frame-parameters says "The parameter `height' will be > initialized to the height of the frame speedbar is attached to and > added to this list before the new frame is initialized." I understand > that to mean it should be the same height as the emacs frame it is > started from, however, in my case it is several lines higher, running > off the bottom of the screen. A height parameter explicitly added to > speedbar-frame-parameters is ignored. What, then, should I do to > coerce the speedbar frame to have the same height as my emacs frame? You might try setting default-frame-alist as well: (setq default-frame-alist '((width . 89) (height . 58)) initial-frame-alist default-frame-alist) -- Kevin Rodgers