From: Po Lu Date: Mon, 15 Jan 2024 06:32:26 +0000 (+0800) Subject: ; * src/xterm.c (x_focus_frame): Insert missing unblock_input. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c11cdf1858cc89464cd7118d6109c7472c50e652;p=emacs.git ; * src/xterm.c (x_focus_frame): Insert missing unblock_input. --- diff --git a/src/xterm.c b/src/xterm.c index fe398171754..c8a43785564 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -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))