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:
parent
ccddf4746c
commit
d6f80ae9a0
1 changed files with 2 additions and 1 deletions
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue