comparison src/frame.c @ 8054:e9bc1c7ef17f

(Fframe_parameters): Don't handle menu-bar-lines explicitly.
author Richard M. Stallman <rms@gnu.org>
date Sat, 25 Jun 1994 17:54:57 +0000
parents 60795e826dad
children a06382fd175d
comparison
equal deleted inserted replaced
8053:60792df5f81f 8054:e9bc1c7ef17f
1367 store_in_alist (&alist, Qminibuffer, 1367 store_in_alist (&alist, Qminibuffer,
1368 (! FRAME_HAS_MINIBUF_P (f) ? Qnil 1368 (! FRAME_HAS_MINIBUF_P (f) ? Qnil
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
1376 if (FRAME_X_P (f)) 1381 if (FRAME_X_P (f))
1377 x_report_frame_params (f, &alist); 1382 x_report_frame_params (f, &alist);