Mercurial > emacs
changeset 13418:3b0b74c6aff7
[HAVE_NTGUI] (Fset_window_configuration): Set menu bar lines.
Use HAVE_WINDOW_SYSTEM instead of testing for specific window systems.
author | Geoff Voelker <voelker@cs.washington.edu> |
---|---|
date | Tue, 07 Nov 1995 07:27:45 +0000 |
parents | db5deab8a955 |
children | 2a17eca35e88 |
files | src/window.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/window.c Tue Nov 07 07:27:19 1995 +0000 +++ b/src/window.c Tue Nov 07 07:27:45 1995 +0000 @@ -2970,7 +2970,7 @@ if (XFASTINT (data->frame_height) != previous_frame_height || XFASTINT (data->frame_width) != previous_frame_width) change_frame_size (f, data->frame_height, data->frame_width, 0, 0); -#ifdef HAVE_X_WINDOWS +#ifdef HAVE_WINDOW_SYSTEM if (XFASTINT (data->frame_menu_bar_lines) != previous_frame_menu_bar_lines) x_set_menu_bar_lines (f, data->frame_menu_bar_lines, 0); @@ -3119,7 +3119,7 @@ || previous_frame_width != FRAME_WIDTH (f)) change_frame_size (f, previous_frame_height, previous_frame_width, 0, 0); -#ifdef HAVE_X_WINDOWS +#ifdef HAVE_WINDOW_SYSTEM if (previous_frame_menu_bar_lines != FRAME_MENU_BAR_LINES (f)) x_set_menu_bar_lines (f, previous_frame_menu_bar_lines, 0); #endif