From b5dd21a8e60eda49d3bf54a67da6c97e17ff57ef Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 2 Aug 1999 00:01:27 +0000 Subject: [PATCH] (Fset_frame_height): Call do_pending_window_change. (Fset_frame_width, Fset_frame_size): Likewise. --- src/frame.c | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.39.5