mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 01:34:21 +00:00
; * src/keyboard.c (readable_events): Fix a thinko.
This commit is contained in:
parent
09f3ac60cc
commit
64cc31b5c8
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue