Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
662ac59a
Commit
662ac59a
authored
May 09, 1995
by
Karl Heuer
Browse files
(make_frame_without_minibuffer): New arg KB.
Require the new frame's minibuffer to be on the same display.
parent
e557f19d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
src/frame.c
src/frame.c
+7
-1
No files found.
src/frame.c
View file @
662ac59a
...
...
@@ -256,8 +256,9 @@ make_frame (mini_p)
default (the global minibuffer). */
struct
frame
*
make_frame_without_minibuffer
(
mini_window
)
make_frame_without_minibuffer
(
mini_window
,
kb
)
register
Lisp_Object
mini_window
;
KBOARD
*
kb
;
{
register
struct
frame
*
f
;
...
...
@@ -275,6 +276,11 @@ make_frame_without_minibuffer (mini_window)
CHECK_LIVE_WINDOW
(
mini_window
,
0
);
}
#ifdef MULTI_KBOARD
if
(
XFRAME
(
XWINDOW
(
mini_window
)
->
frame
)
->
kboard
!=
kb
)
error
(
"frame and minibuffer must be on the same display"
);
#endif
/* Make a frame containing just a root window. */
f
=
make_frame
(
0
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment