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

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

Re: fullscreen does not work


From: Torsten Mueller
Subject: Re: fullscreen does not work
Date: Fri, 20 Apr 2007 12:58:46 +0200
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.98 (windows-nt)

Cecil Westerhof <dummy@dummy.nl> schrieb:

> I find 'emacs' and then '<Alt>+<F3> x' easier. ;-}

But what is '<Alt>+<F3> x'? On my machine it does just nothing.

> > Another method is to have some Lisp statements at the end of your
> > .emacs like these:
> >
> > let (
> > (maxcols 150)
> > (maxrows 68)
> > )
> > (set-frame-position (selected-frame) 700 100)
> > (set-frame-size     (selected-frame) maxcols maxrows)
>
> I get unknown let.

Sure. I forgot the outer brackets. (Perhaps I should use smome more
Lisp-like style of indenting ...)

        (let ( (maxcols 150) (maxrows 68) )
                (set-frame-position  (selected-frame) 700 100)
                (set-frame-size (selected-frame) maxcols maxrows) )

These outer brackets are significant.

> If I then do not use maxcols and maxrows but hard coded values, I
> get unknown set-frame-size.

Yes. Me too. But with these variables it will work.

T.M.


reply via email to

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