aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/frame.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c
index 5face5086a9..569b0622c7d 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -1369,7 +1369,12 @@ If FRAME is omitted, return information on the currently selected frame.")
1369 : FRAME_MINIBUF_ONLY_P (f) ? Qonly 1369 : FRAME_MINIBUF_ONLY_P (f) ? Qonly
1370 : FRAME_MINIBUF_WINDOW (f))); 1370 : FRAME_MINIBUF_WINDOW (f)));
1371 store_in_alist (&alist, Qunsplittable, (FRAME_NO_SPLIT_P (f) ? Qt : Qnil)); 1371 store_in_alist (&alist, Qunsplittable, (FRAME_NO_SPLIT_P (f) ? Qt : Qnil));
1372 store_in_alist (&alist, Qmenu_bar_lines, (FRAME_MENU_BAR_LINES (f))); 1372#if 0 /* This ought to be correct in f->param_alist. */
1373 store_in_alist (&alist, Qmenu_bar_lines,
1374 (FRAME_MENU_BAR_LINES (f)
1375 ? FRAME_MENU_BAR_LINES (f)
1376 : FRAME_EXTERNAL_MENU_BAR (f)));
1377#endif
1373 1378
1374 /* I think this should be done with a hook. */ 1379 /* I think this should be done with a hook. */
1375#ifdef HAVE_X_WINDOWS 1380#ifdef HAVE_X_WINDOWS