From: Richard M. Stallman Date: Tue, 9 Apr 1996 03:01:02 +0000 (+0000) Subject: (x_set_frame_parameters): Do call Fset_frame_size X-Git-Tag: emacs-19.34~895 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d6f80ae9a03ff7dbd52d63462d443da17d5f1352;p=emacs.git (x_set_frame_parameters): Do call Fset_frame_size if size is specified and there is a pending size change already. --- diff --git a/src/xfns.c b/src/xfns.c index 2f832cfed61..e3ad7cdad58 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -851,7 +851,8 @@ x_set_frame_parameters (f, alist) XSETFRAME (frame, f); if ((NUMBERP (width) && XINT (width) != FRAME_WIDTH (f)) - || (NUMBERP (height) && XINT (height) != FRAME_HEIGHT (f))) + || (NUMBERP (height) && XINT (height) != FRAME_HEIGHT (f)) + || FRAME_NEW_HEIGHT (f) || FRAME_NEW_WIDTH (f)) Fset_frame_size (frame, width, height); if ((!NILP (left) || !NILP (top))