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

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

Re: Function call in default-frame-alist


From: Kevin Rodgers
Subject: Re: Function call in default-frame-alist
Date: Mon, 01 Dec 2003 12:48:21 -0700
User-agent: Mozilla/5.0 (X11; U; SunOS i86pc; en-US; rv:0.9.4.1) Gecko/20020406 Netscape6/6.2.2

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



reply via email to

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