# HG changeset patch # User Richard M. Stallman # Date 933552087 0 # Node ID 1e90b09cc90ece924af5ad11555254e3f150490a # Parent 6ad585efe29daa3d1eb475a04edce8f907d3bd01 (Fset_frame_height): Call do_pending_window_change. (Fset_frame_width, Fset_frame_size): Likewise. diff -r 6ad585efe29d -r 1e90b09cc90e src/frame.c --- a/src/frame.c Mon Aug 02 00:01:05 1999 +0000 +++ b/src/frame.c Mon Aug 02 00:01:27 1999 +0000 @@ -2189,6 +2189,7 @@ { 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 @@ { 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 @@ 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