From: Richard M. Stallman Date: Mon, 2 Aug 1999 00:01:27 +0000 (+0000) Subject: (Fset_frame_height): Call do_pending_window_change. X-Git-Tag: emacs-pretest-21.0.90~7289 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b5dd21a8e60eda49d3bf54a67da6c97e17ff57ef;p=emacs.git (Fset_frame_height): Call do_pending_window_change. (Fset_frame_width, Fset_frame_size): Likewise. --- diff --git a/src/frame.c b/src/frame.c index fa276cb38ef..831721201cc 100644 --- a/src/frame.c +++ b/src/frame.c @@ -2189,6 +2189,7 @@ but that the idea of the actual height of the frame should not be changed.") { if (XINT (lines) != f->height) x_set_window_size (f, 1, f->width, XINT (lines)); + do_pending_window_change (); } else #endif @@ -2219,6 +2220,7 @@ but that the idea of the actual width of the frame should not be changed.") { if (XINT (cols) != f->width) x_set_window_size (f, 1, XINT (cols), f->height); + do_pending_window_change (); } else #endif @@ -2246,6 +2248,7 @@ DEFUN ("set-frame-size", Fset_frame_size, Sset_frame_size, 3, 3, 0, if (XINT (rows) != f->height || XINT (cols) != f->width || FRAME_NEW_HEIGHT (f) || FRAME_NEW_WIDTH (f)) x_set_window_size (f, 1, XINT (cols), XINT (rows)); + do_pending_window_change (); } else #endif