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
b6dd20ed
Commit
b6dd20ed
authored
Jul 14, 1994
by
Richard M. Stallman
Browse files
[MULTI_FRAME] (Fframe_parameters): For non-X frames,
fill in menu-bar-lines value.
parent
c34b559d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
src/frame.c
src/frame.c
+3
-6
No files found.
src/frame.c
View file @
b6dd20ed
...
...
@@ -1403,18 +1403,15 @@ If FRAME is omitted, return information on the currently selected frame.")
:
FRAME_MINIBUF_ONLY_P
(
f
)
?
Qonly
:
FRAME_MINIBUF_WINDOW
(
f
)));
store_in_alist
(
&
alist
,
Qunsplittable
,
(
FRAME_NO_SPLIT_P
(
f
)
?
Qt
:
Qnil
));
#if 0 /* This ought to be correct in f->param_alist. */
store_in_alist (&alist, Qmenu_bar_lines,
(FRAME_MENU_BAR_LINES (f)
? FRAME_MENU_BAR_LINES (f)
: FRAME_EXTERNAL_MENU_BAR (f)));
#endif
/* I think this should be done with a hook. */
#ifdef HAVE_X_WINDOWS
if
(
FRAME_X_P
(
f
))
x_report_frame_params
(
f
,
&
alist
);
else
#endif
/* This ought to be correct in f->param_alist for an X frame. */
store_in_alist
(
&
alist
,
Qmenu_bar_lines
,
FRAME_MENU_BAR_LINES
(
f
));
return
alist
;
}
...
...
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