diff options
| author | Eli Zaretskii | 2021-10-28 21:19:34 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2021-10-28 21:19:34 +0300 |
| commit | 64cc31b5c80ab165c4e565ff8943919d832ebd2f (patch) | |
| tree | 1bbdb35e05dfd79c84cff292e6693962481f6997 /src | |
| parent | 09f3ac60cc99dcb56632c55f0dfd0fbeadc60dc0 (diff) | |
| download | emacs-64cc31b5c80ab165c4e565ff8943919d832ebd2f.tar.gz emacs-64cc31b5c80ab165c4e565ff8943919d832ebd2f.zip | |
; * src/keyboard.c (readable_events): Fix a thinko.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) | |||
| 3472 | #ifdef USE_TOOLKIT_SCROLL_BARS | 3472 | #ifdef USE_TOOLKIT_SCROLL_BARS |
| 3473 | (flags & READABLE_EVENTS_FILTER_EVENTS) && | 3473 | (flags & READABLE_EVENTS_FILTER_EVENTS) && |
| 3474 | #endif | 3474 | #endif |
| 3475 | ((input_pending_p_filter_events | 3475 | ((!input_pending_p_filter_events |
| 3476 | && (event->kind == FOCUS_IN_EVENT | 3476 | && (event->kind == FOCUS_IN_EVENT |
| 3477 | || event->kind == FOCUS_OUT_EVENT)) | 3477 | || event->kind == FOCUS_OUT_EVENT)) |
| 3478 | || (!input_pending_p_filter_events | 3478 | || (input_pending_p_filter_events |
| 3479 | && is_ignored_event (event)))) | 3479 | && is_ignored_event (event)))) |
| 3480 | #ifdef USE_TOOLKIT_SCROLL_BARS | 3480 | #ifdef USE_TOOLKIT_SCROLL_BARS |
| 3481 | && !((flags & READABLE_EVENTS_IGNORE_SQUEEZABLES) | 3481 | && !((flags & READABLE_EVENTS_IGNORE_SQUEEZABLES) |