From: Richard M. Stallman Date: Mon, 22 Nov 1993 04:33:26 +0000 (+0000) Subject: (x_set_frame_parameters): Call check_frame_size X-Git-Tag: emacs-19.34~10744 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1f11a5cab282e94439e4e5a7a2e9a17b19af5573;p=emacs.git (x_set_frame_parameters): Call check_frame_size before Fset_frame_size and Fset_frame_position. --- diff --git a/src/xfns.c b/src/xfns.c index d5dbc810253..249f89ba756 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -419,6 +419,8 @@ x_set_frame_parameters (f, alist) { Lisp_Object frame; + check_frame_size (f, &height, &width); + XSET (frame, Lisp_Frame, f); if ((NUMBERP (width) && XINT (width) != FRAME_WIDTH (f))