From 1f11a5cab282e94439e4e5a7a2e9a17b19af5573 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 22 Nov 1993 04:33:26 +0000 Subject: [PATCH] (x_set_frame_parameters): Call check_frame_size before Fset_frame_size and Fset_frame_position. --- src/xfns.c | 2 ++ 1 file changed, 2 insertions(+) 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)) -- 2.39.5