aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMartin Rudalics2016-04-22 11:56:03 +0200
committerMartin Rudalics2016-04-22 11:56:03 +0200
commit2b31a0c21e51d39a82572a32d2d31b5a2aa174a3 (patch)
treecbf5692a4b61ee3aab08097d971e0cb1f1e47c35 /src
parent401857eda39c57bd59a1e3a1dee57fd6420eeab5 (diff)
downloademacs-2b31a0c21e51d39a82572a32d2d31b5a2aa174a3.tar.gz
emacs-2b31a0c21e51d39a82572a32d2d31b5a2aa174a3.zip
In x_set_window_size restore do_pending_window_change calls
* src/xterm.c (x_set_window_size): * src/w32term.c (x_set_window_size): Restore do_pending_window_change calls after their stupid removal on 2015-08-31.
Diffstat (limited to 'src')
-rw-r--r--src/w32term.c2
-rw-r--r--src/xterm.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/w32term.c b/src/w32term.c
index 62ad4eb086b..51743f8f94d 100644
--- a/src/w32term.c
+++ b/src/w32term.c
@@ -6231,6 +6231,8 @@ x_set_window_size (struct frame *f, bool change_gravity,
6231 } 6231 }
6232 6232
6233 unblock_input (); 6233 unblock_input ();
6234
6235 do_pending_window_change (false);
6234} 6236}
6235 6237
6236/* Mouse warping. */ 6238/* Mouse warping. */
diff --git a/src/xterm.c b/src/xterm.c
index ba9bf50de31..2f8e0775909 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -10746,6 +10746,8 @@ x_set_window_size (struct frame *f, bool change_gravity,
10746 cancel_mouse_face (f); 10746 cancel_mouse_face (f);
10747 10747
10748 unblock_input (); 10748 unblock_input ();
10749
10750 do_pending_window_change (false);
10749} 10751}
10750 10752
10751/* Move the mouse to position pixel PIX_X, PIX_Y relative to frame F. */ 10753/* Move the mouse to position pixel PIX_X, PIX_Y relative to frame F. */