summaryrefslogtreecommitdiff
path: root/lisp/frame.el
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1995-01-30 23:47:17 +0000
committerKarl Heuer <kwzh@gnu.org>1995-01-30 23:47:17 +0000
commit3ce3ff115195322ca9c3f638c8dab30e7b95f89a (patch)
tree012afe4c0a04b8467ddc6b5b8120fe79b1dc38c4 /lisp/frame.el
parent997d1bf03b98abb2e32cfffaf9d394fac48edc48 (diff)
downloademacs-3ce3ff115195322ca9c3f638c8dab30e7b95f89a.tar.gz
(frame-notice-user-settings): Avoid having the window manager re-prompt for
the initial frame's clone.
Diffstat (limited to 'lisp/frame.el')
-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'.")
(make-frame
;; Use the geometry args that created the existing
;; frame, rather than the parms we get for it.
- (append frame-initial-geometry-arguments parms)))
+ (append frame-initial-geometry-arguments
+ '((user-size . t) (user-position . t))
+ parms)))
;; The initial frame, which we are about to delete, may be
;; the only frame with a minibuffer. If it is, create a
;; new one.