Mercurial > emacs
diff src/window.c @ 25356:5db69f7aadca
Call change_frame_size and do_pending_window_change with
new parameter.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Sat, 21 Aug 1999 19:30:35 +0000 |
| parents | 79bb4978ab2e |
| children | 919b568e4108 |
line wrap: on
line diff
--- a/src/window.c Sat Aug 21 19:30:21 1999 +0000 +++ b/src/window.c Sat Aug 21 19:30:35 1999 +0000 @@ -4092,7 +4092,7 @@ if (XFASTINT (data->frame_height) != previous_frame_height || XFASTINT (data->frame_width) != previous_frame_width) change_frame_size (f, XFASTINT (data->frame_height), - XFASTINT (data->frame_width), 0, 0); + XFASTINT (data->frame_width), 0, 0, 0); #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS) if (XFASTINT (data->frame_menu_bar_lines) != previous_frame_menu_bar_lines) @@ -4259,7 +4259,7 @@ if (previous_frame_height != FRAME_HEIGHT (f) || previous_frame_width != FRAME_WIDTH (f)) change_frame_size (f, previous_frame_height, previous_frame_width, - 0, 0); + 0, 0, 0); #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS) if (previous_frame_menu_bar_lines != FRAME_MENU_BAR_LINES (f)) x_set_menu_bar_lines (f, make_number (previous_frame_menu_bar_lines),
