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

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

Re: set-frame-parameter


From: Stephen Berman
Subject: Re: set-frame-parameter
Date: Wed, 09 Dec 2020 23:58:02 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux)

On Wed, 9 Dec 2020 23:24:39 +0100 steve-humphreys@gmx.com wrote:

> Have started using fullscreen
>
>    (set-frame-parameter (selected-frame) 'fullscreen 'fullboth)
>
> Then to maximised position
>
>    (set-frame-parameter (selected-frame) 'width 75)
>    (set-frame-parameter nil 'fullscreen 'fullheight)
>
> But then doing the following small frame gets me an error
>
>    (set-frame-size nil 'width  58)
>    (set-frame-size nil 'height 13)

The WIDTH and HEIGHT arguments of set-frame-size should be numbers, like
this:

(set-frame-size nil 58 13)

Steve Berman



reply via email to

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