From 3ce3ff115195322ca9c3f638c8dab30e7b95f89a Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Mon, 30 Jan 1995 23:47:17 +0000 Subject: [PATCH] (frame-notice-user-settings): Avoid having the window manager re-prompt for the initial frame's clone. --- lisp/frame.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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. -- 2.39.5