comparison src/xfns.c @ 16515:18e4e6c705ed

(Fx_create_frame): Look for X-resource for minibuffer.
author Richard M. Stallman <rms@gnu.org>
date Tue, 05 Nov 1996 02:15:11 +0000
parents 4e4cc27b2a2a
children fe4b95eb15ae
comparison
equal deleted inserted replaced
16514:c270f12e9373 16515:18e4e6c705ed
3096 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */ 3096 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
3097 /* No need to protect DISPLAY because that's not used after passing 3097 /* No need to protect DISPLAY because that's not used after passing
3098 it to make_frame_without_minibuffer. */ 3098 it to make_frame_without_minibuffer. */
3099 frame = Qnil; 3099 frame = Qnil;
3100 GCPRO4 (parms, parent, name, frame); 3100 GCPRO4 (parms, parent, name, frame);
3101 tem = x_get_arg (parms, Qminibuffer, 0, 0, symbol); 3101 tem = x_get_arg (parms, Qminibuffer, "minibuffer", "Minibuffer", symbol);
3102 if (EQ (tem, Qnone) || NILP (tem)) 3102 if (EQ (tem, Qnone) || NILP (tem))
3103 f = make_frame_without_minibuffer (Qnil, kb, display); 3103 f = make_frame_without_minibuffer (Qnil, kb, display);
3104 else if (EQ (tem, Qonly)) 3104 else if (EQ (tem, Qonly))
3105 { 3105 {
3106 f = make_minibuffer_frame (); 3106 f = make_minibuffer_frame ();