mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-08 12:40:49 -08:00
[MULTI_FRAME] (Fframe_parameters): For non-X frames,
fill in menu-bar-lines value.
This commit is contained in:
parent
c34b559de0
commit
b6dd20ed5a
1 changed files with 3 additions and 6 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue