]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/xterm.c (x_focus_frame): Insert missing unblock_input.
authorPo Lu <luangruo@yahoo.com>
Mon, 15 Jan 2024 06:32:26 +0000 (14:32 +0800)
committerPo Lu <luangruo@yahoo.com>
Mon, 15 Jan 2024 06:32:26 +0000 (14:32 +0800)
src/xterm.c

index fe39817175441533b2cc88686b226d85fa2d2981..c8a43785564dd523732d8e154aa9b129524342bc 100644 (file)
@@ -28828,7 +28828,10 @@ x_focus_frame (struct frame *f, bool noactivate)
      window.  (bug#65116)*/
 
   if (f == dpyinfo->x_focus_frame && !FRAME_HAS_MINIBUF_P (f))
-    return;
+    {
+      unblock_input ();
+      return;
+    }
 #endif /* HAVE_GTK3 */
 
   if (FRAME_X_EMBEDDED_P (f))