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

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

Re: Problem turning fullheight mode on via default-frame-alist.


From: Allan Gottlieb
Subject: Re: Problem turning fullheight mode on via default-frame-alist.
Date: Sat, 20 Dec 2008 21:44:29 -0500
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (gnu/linux)

At Sat, 20 Dec 2008 14:59:44 -0500 Tim Visher <tim.visher@gmail.com> wrote:

> Can anyone explain to me what I'm doing wrong here?  As far as I can
> read in the info pages, the following ELISP should set my default
> frame size to fullheight, but it's not working.  The height doesn't
> change at all, though.  I have no idea what I'm doing wrong.
>
> ;; Customize Frame Size and position
> (setq default-frame-alist '((top . 1) (left . 170) (right . 1) (width
> . 130) (fullscreen . fullheight)))

I sent a bug report on a similar finding.  For modify-frame-parameters
you can't set fullscreen and another property in the same command.
So I have

  (modify-frame-parameters nil '( (fullscreen . fullheight) ))
  (modify-frame-parameters nil '( (width . 170) ))

in one of my elisp functions.

hth,
allan




reply via email to

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