aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1995-01-30 23:47:17 +0000
committerKarl Heuer1995-01-30 23:47:17 +0000
commit3ce3ff115195322ca9c3f638c8dab30e7b95f89a (patch)
tree012afe4c0a04b8467ddc6b5b8120fe79b1dc38c4
parent997d1bf03b98abb2e32cfffaf9d394fac48edc48 (diff)
downloademacs-3ce3ff115195322ca9c3f638c8dab30e7b95f89a.tar.gz
emacs-3ce3ff115195322ca9c3f638c8dab30e7b95f89a.zip
(frame-notice-user-settings): Avoid having the window manager re-prompt for
the initial frame's clone.
-rw-r--r--lisp/frame.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/frame.el b/lisp/frame.el
index ebeec61a2d3..88e088abdc7 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -261,7 +261,9 @@ These supersede the values given in `default-frame-alist'.")
261 (make-frame 261 (make-frame
262 ;; Use the geometry args that created the existing 262 ;; Use the geometry args that created the existing
263 ;; frame, rather than the parms we get for it. 263 ;; frame, rather than the parms we get for it.
264 (append frame-initial-geometry-arguments parms))) 264 (append frame-initial-geometry-arguments
265 '((user-size . t) (user-position . t))
266 parms)))
265 ;; The initial frame, which we are about to delete, may be 267 ;; The initial frame, which we are about to delete, may be
266 ;; the only frame with a minibuffer. If it is, create a 268 ;; the only frame with a minibuffer. If it is, create a
267 ;; new one. 269 ;; new one.