comparison lisp/frame.el @ 83180:e657dca8261e

Merged in changes from CVS trunk. Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-461 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-462 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-463 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-220
author Karoly Lorentey <lorentey@elte.hu>
date Thu, 22 Jul 2004 22:01:29 +0000
parents 6b4b299e2cd5 487f85e36408
children 159920fd1024
comparison
equal deleted inserted replaced
83179:3864ee1088e9 83180:e657dca8261e
530 (make-frame parms)))) 530 (make-frame parms))))
531 531
532 ;;;; Creation of additional frames, and other frame miscellanea 532 ;;;; Creation of additional frames, and other frame miscellanea
533 533
534 (defun modify-all-frames-parameters (alist) 534 (defun modify-all-frames-parameters (alist)
535 "modify all current and future frames parameters according to ALIST. 535 "Modify all current and future frames parameters according to ALIST.
536 This changes `default-frame-alist' and possibly `initial-frame-alist'. 536 This changes `default-frame-alist' and possibly `initial-frame-alist'.
537 See help of `modify-frame-parameters' for more information." 537 See help of `modify-frame-parameters' for more information."
538 (let (element) ;; temp 538 (let (element) ;; temp
539 (dolist (frame (frame-list)) 539 (dolist (frame (frame-list))
540 (modify-frame-parameters frame alist)) 540 (modify-frame-parameters frame alist))