1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 08:43:40 -07:00

(x_set_frame_parameters): Do call Fset_frame_size

if size is specified and there is a pending size change already.
This commit is contained in:
Richard M. Stallman 1996-04-09 03:01:02 +00:00
parent ccddf4746c
commit d6f80ae9a0

View file

@ -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))