changeset 31771:716c4876654b

(frame-notice-user-settings): Add a last parameter nil to a call to `append', because the last list passed to `append' is not copied, and so subsequent calls to assq-delete-all will modify default-frame-alist.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 20 Sep 2000 16:04:38 +0000
parents 89fcb6926a97
children 2d2c0153a04d
files lisp/frame.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/frame.el	Wed Sep 20 14:07:25 2000 +0000
+++ b/lisp/frame.el	Wed Sep 20 16:04:38 2000 +0000
@@ -360,7 +360,7 @@
 	  ;; the new parameters.
 	  (let (newparms allparms tail)
 	    (setq allparms (append initial-frame-alist
-				   default-frame-alist))
+				   default-frame-alist nil))
 	    (if (assq 'height frame-initial-geometry-arguments)
 		(setq allparms (assq-delete-all 'height allparms)))
 	    (if (assq 'width frame-initial-geometry-arguments)