* Function call in default-frame-alist
@ 2003-11-27 10:54 Sébastien Kirche
0 siblings, 0 replies; 2+ messages in thread
From: Sébastien Kirche @ 2003-11-27 10:54 UTC (permalink / raw)
Hi,
i defined the following to alter the geometry of new emacs frames (osx
version):
(if window-system
(setq default-frame-alist '((width . 100)
(height . 44)
(top . 50);pixels
(left . 50);pixels
(font . "fontset-mac"))))
I would also like to set the truncate-line that is buffer dependant
with (toggle-truncate-lines 1)
I didn't see any equivalent to defaukt-frame-alist (neither apropos,
nor show variable or help function)...
How should i do ?
Thanks
Sébastien Kirche
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Function call in default-frame-alist
[not found] <mailman.715.1069934555.399.help-gnu-emacs@gnu.org>
@ 2003-12-01 19:48 ` Kevin Rodgers
0 siblings, 0 replies; 2+ messages in thread
From: Kevin Rodgers @ 2003-12-01 19:48 UTC (permalink / raw)
Sébastien Kirche wrote:
> (if window-system
> (setq default-frame-alist '((width . 100)
> (height . 44)
> (top . 50);pixels
> (left . 50);pixels
> (font . "fontset-mac"))))
>
> I would also like to set the truncate-line that is buffer dependant with
> (toggle-truncate-lines 1)
Uh, the toggle-truncate-lines function does not take any arguments. You
could just set the default value of the truncate-lines variable:
(when window-system
(setq default-frame-alist ...)
(setq-default truncate-lines t))
--
Kevin Rodgers
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2003-12-01 19:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-11-27 10:54 Function call in default-frame-alist Sébastien Kirche
[not found] <mailman.715.1069934555.399.help-gnu-emacs@gnu.org>
2003-12-01 19:48 ` Kevin Rodgers
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).