]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix input after setting x-wait-for-event-timeout nil
authorEli Zaretskii <eliz@gnu.org>
Tue, 19 Feb 2019 18:58:53 +0000 (20:58 +0200)
committerEli Zaretskii <eliz@gnu.org>
Tue, 19 Feb 2019 18:58:53 +0000 (20:58 +0200)
* src/w32term.c (x_make_frame_visible): Call unblock_input
before returning early.  (Bug#34575)

src/w32term.c

index a9b5793a3ecd843e4baf7c63c546cb271c01d733..dbaf1054f1f7c8ccf0eb216df0aa35802a8b054c 100644 (file)
@@ -6672,7 +6672,10 @@ x_make_frame_visible (struct frame *f)
     }
 
   if (!FLOATP (Vx_wait_for_event_timeout))
+    {
+      unblock_input ();
       return;
+    }
 
   /* Synchronize to ensure Emacs knows the frame is visible
      before we do anything else.  We do this loop with input not blocked