diff options
| author | Karl Heuer | 1995-05-30 06:53:25 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-05-30 06:53:25 +0000 |
| commit | 2526c29004c697b3e85e4a84f51124a9befc4549 (patch) | |
| tree | 5e6748eb90e471294a3ce19dc809201203e19690 /src | |
| parent | b06602395f523eee027a2fd7f0b8e1b70b86dfd4 (diff) | |
| download | emacs-2526c29004c697b3e85e4a84f51124a9befc4549.tar.gz emacs-2526c29004c697b3e85e4a84f51124a9befc4549.zip | |
(Fx_create_frame): Pass new arg to make_frame_without_minibuffer.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfns.c | 4 |
1 files changed, 2 insertions, 2 deletions
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.") | |||
| 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 | ||