aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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.