aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2000-09-20 16:04:38 +0000
committerGerd Moellmann <[email protected]>2000-09-20 16:04:38 +0000
commitfed72c8d9b9082917294e0551050957afcb14576 (patch)
treeb0f726bd70f14142b30320e2a554a617b05b4d5f /lisp
parentb7e11c5bb5b138b0dec06f3e694a4e6f011ed024 (diff)
(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.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/frame.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/frame.el b/lisp/frame.el
index e4770cc6be..263e80e2ff 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -360,7 +360,7 @@ React to settings of `default-frame-alist', `initial-frame-alist' there."
;; 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)