From: Karl Heuer Date: Tue, 30 May 1995 06:53:25 +0000 (+0000) Subject: (Fx_create_frame): Pass new arg to make_frame_without_minibuffer. X-Git-Tag: emacs-19.34~3847 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2526c29004c697b3e85e4a84f51124a9befc4549;p=emacs.git (Fx_create_frame): Pass new arg to make_frame_without_minibuffer. --- diff --git a/src/xfns.c b/src/xfns.c index 910f0aefad4..d90bd4d468c 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -2802,14 +2802,14 @@ This function is an internal primitive--use `make-frame' instead.") tem = x_get_arg (parms, Qminibuffer, 0, 0, symbol); if (EQ (tem, Qnone) || NILP (tem)) - f = make_frame_without_minibuffer (Qnil, kb); + f = make_frame_without_minibuffer (Qnil, kb, display); else if (EQ (tem, Qonly)) { f = make_minibuffer_frame (); minibuffer_only = 1; } else if (WINDOWP (tem)) - f = make_frame_without_minibuffer (tem, kb); + f = make_frame_without_minibuffer (tem, kb, display); else f = make_frame (1);