comparison src/xfns.c @ 12011:854e396aabed

(Fx_create_frame): Pass new arg to make_frame_without_minibuffer.
author Karl Heuer <kwzh@gnu.org>
date Tue, 30 May 1995 06:53:25 +0000
parents 0deb4505c0f0
children 63ee64941021
comparison
equal deleted inserted replaced
12010:57eb365d32f0 12011:854e396aabed
2800 if (! NILP (parent)) 2800 if (! NILP (parent))
2801 CHECK_NUMBER (parent, 0); 2801 CHECK_NUMBER (parent, 0);
2802 2802
2803 tem = x_get_arg (parms, Qminibuffer, 0, 0, symbol); 2803 tem = x_get_arg (parms, Qminibuffer, 0, 0, symbol);
2804 if (EQ (tem, Qnone) || NILP (tem)) 2804 if (EQ (tem, Qnone) || NILP (tem))
2805 f = make_frame_without_minibuffer (Qnil, kb); 2805 f = make_frame_without_minibuffer (Qnil, kb, display);
2806 else if (EQ (tem, Qonly)) 2806 else if (EQ (tem, Qonly))
2807 { 2807 {
2808 f = make_minibuffer_frame (); 2808 f = make_minibuffer_frame ();
2809 minibuffer_only = 1; 2809 minibuffer_only = 1;
2810 } 2810 }
2811 else if (WINDOWP (tem)) 2811 else if (WINDOWP (tem))
2812 f = make_frame_without_minibuffer (tem, kb); 2812 f = make_frame_without_minibuffer (tem, kb, display);
2813 else 2813 else
2814 f = make_frame (1); 2814 f = make_frame (1);
2815 2815
2816 /* Note that X Windows does support scroll bars. */ 2816 /* Note that X Windows does support scroll bars. */
2817 FRAME_CAN_HAVE_SCROLL_BARS (f) = 1; 2817 FRAME_CAN_HAVE_SCROLL_BARS (f) = 1;