aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-06-25 17:54:57 +0000
committerRichard M. Stallman1994-06-25 17:54:57 +0000
commit37b2bef6699c39e81f4172f0396bb5d6c60dd528 (patch)
tree5d9a21a1227835946beadbd19c70ec72115b036a
parentccd0664b315dd3c72b0e18a7c162cbcf4f256ecb (diff)
downloademacs-37b2bef6699c39e81f4172f0396bb5d6c60dd528.tar.gz
emacs-37b2bef6699c39e81f4172f0396bb5d6c60dd528.zip
(Fframe_parameters): Don't handle menu-bar-lines explicitly.
-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