aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
authorGerd Moellmann1999-08-21 19:30:35 +0000
committerGerd Moellmann1999-08-21 19:30:35 +0000
commit2b6538062cc74db6e18f6dce36721b93d3d32924 (patch)
tree9eff08051a410f9e18106693f5d4aa52a1d7f86f /src/window.c
parent0788646cc2f1b65a6aabf8a2a9b0fa3488e0f560 (diff)
downloademacs-2b6538062cc74db6e18f6dce36721b93d3d32924.tar.gz
emacs-2b6538062cc74db6e18f6dce36721b93d3d32924.zip
Call change_frame_size and do_pending_window_change with
new parameter.
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/window.c b/src/window.c
index c18566dd841..b2f2bc08a69 100644
--- a/src/window.c
+++ b/src/window.c
@@ -4092,7 +4092,7 @@ the return value is nil. Otherwise the value is t.")
4092 if (XFASTINT (data->frame_height) != previous_frame_height 4092 if (XFASTINT (data->frame_height) != previous_frame_height
4093 || XFASTINT (data->frame_width) != previous_frame_width) 4093 || XFASTINT (data->frame_width) != previous_frame_width)
4094 change_frame_size (f, XFASTINT (data->frame_height), 4094 change_frame_size (f, XFASTINT (data->frame_height),
4095 XFASTINT (data->frame_width), 0, 0); 4095 XFASTINT (data->frame_width), 0, 0, 0);
4096#if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS) 4096#if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
4097 if (XFASTINT (data->frame_menu_bar_lines) 4097 if (XFASTINT (data->frame_menu_bar_lines)
4098 != previous_frame_menu_bar_lines) 4098 != previous_frame_menu_bar_lines)
@@ -4259,7 +4259,7 @@ the return value is nil. Otherwise the value is t.")
4259 if (previous_frame_height != FRAME_HEIGHT (f) 4259 if (previous_frame_height != FRAME_HEIGHT (f)
4260 || previous_frame_width != FRAME_WIDTH (f)) 4260 || previous_frame_width != FRAME_WIDTH (f))
4261 change_frame_size (f, previous_frame_height, previous_frame_width, 4261 change_frame_size (f, previous_frame_height, previous_frame_width,
4262 0, 0); 4262 0, 0, 0);
4263#if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS) 4263#if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
4264 if (previous_frame_menu_bar_lines != FRAME_MENU_BAR_LINES (f)) 4264 if (previous_frame_menu_bar_lines != FRAME_MENU_BAR_LINES (f))
4265 x_set_menu_bar_lines (f, make_number (previous_frame_menu_bar_lines), 4265 x_set_menu_bar_lines (f, make_number (previous_frame_menu_bar_lines),