From: Eli Zaretskii Date: Thu, 28 Oct 2021 18:19:34 +0000 (+0300) Subject: ; * src/keyboard.c (readable_events): Fix a thinko. X-Git-Tag: emacs-29.0.90~3671^2~370 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=64cc31b5c80ab165c4e565ff8943919d832ebd2f;p=emacs.git ; * src/keyboard.c (readable_events): Fix a thinko. --- diff --git a/src/keyboard.c b/src/keyboard.c index 6aecebf4054..5d4bb6ee8ff 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -3472,10 +3472,10 @@ readable_events (int flags) #ifdef USE_TOOLKIT_SCROLL_BARS (flags & READABLE_EVENTS_FILTER_EVENTS) && #endif - ((input_pending_p_filter_events + ((!input_pending_p_filter_events && (event->kind == FOCUS_IN_EVENT || event->kind == FOCUS_OUT_EVENT)) - || (!input_pending_p_filter_events + || (input_pending_p_filter_events && is_ignored_event (event)))) #ifdef USE_TOOLKIT_SCROLL_BARS && !((flags & READABLE_EVENTS_IGNORE_SQUEEZABLES)