emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-25 2b31a0c: In x_set_window_size restore do_pending_


From: Martin Rudalics
Subject: [Emacs-diffs] emacs-25 2b31a0c: In x_set_window_size restore do_pending_window_change calls
Date: Fri, 22 Apr 2016 09:56:48 +0000

branch: emacs-25
commit 2b31a0c21e51d39a82572a32d2d31b5a2aa174a3
Author: Martin Rudalics <address@hidden>
Commit: Martin Rudalics <address@hidden>

    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.
---
 src/w32term.c |    2 ++
 src/xterm.c   |    2 ++
 2 files changed, 4 insertions(+)

diff --git a/src/w32term.c b/src/w32term.c
index 62ad4eb..51743f8 100644
--- a/src/w32term.c
+++ b/src/w32term.c
@@ -6231,6 +6231,8 @@ x_set_window_size (struct frame *f, bool change_gravity,
     }
 
   unblock_input ();
+
+  do_pending_window_change (false);
 }
 
 /* Mouse warping.  */
diff --git a/src/xterm.c b/src/xterm.c
index ba9bf50..2f8e077 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -10746,6 +10746,8 @@ x_set_window_size (struct frame *f, bool change_gravity,
   cancel_mouse_face (f);
 
   unblock_input ();
+
+  do_pending_window_change (false);
 }
 
 /* Move the mouse to position pixel PIX_X, PIX_Y relative to frame F.  */



reply via email to

[Prev in Thread] Current Thread [Next in Thread]