diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-11-05 02:15:11 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-11-05 02:15:11 +0000 |
commit | 050d63b5c8222d4fa2309a98bcc6a291259b2e34 (patch) | |
tree | 392ee34166c468cc6bf40f0670a24844d578ba88 /src/xfns.c | |
parent | 0609c9984c3f1c9791d1ae70d59258549d3c8509 (diff) | |
download | emacs-050d63b5c8222d4fa2309a98bcc6a291259b2e34.tar.gz |
(Fx_create_frame): Look for X-resource for minibuffer.
Diffstat (limited to 'src/xfns.c')
-rw-r--r-- | src/xfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfns.c b/src/xfns.c index 9395f6ce371..ee63ba5f44f 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -3098,7 +3098,7 @@ This function is an internal primitive--use `make-frame' instead.") it to make_frame_without_minibuffer. */ frame = Qnil; GCPRO4 (parms, parent, name, frame); - tem = x_get_arg (parms, Qminibuffer, 0, 0, symbol); + tem = x_get_arg (parms, Qminibuffer, "minibuffer", "Minibuffer", symbol); if (EQ (tem, Qnone) || NILP (tem)) f = make_frame_without_minibuffer (Qnil, kb, display); else if (EQ (tem, Qonly)) |