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
_______________________________________________
Help-gnu-emacs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

Reply via email to