]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fx_create_frame): Pass new arg to make_frame_without_minibuffer.
authorKarl Heuer <kwzh@gnu.org>
Tue, 30 May 1995 06:53:25 +0000 (06:53 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 30 May 1995 06:53:25 +0000 (06:53 +0000)
src/xfns.c

index 910f0aefad4d57a34b264eb499fa1725767b0488..d90bd4d468c0679efdadb2512d530631f38e1380 100644 (file)
@@ -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);