diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 512fa279b38..266ebaa5fdf 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -3614,6 +3614,12 @@ kbd_buffer_store_buffered_event (union buffered_input_event *event, | |||
| 3614 | case ICONIFY_EVENT: ignore_event = Qiconify_frame; break; | 3614 | case ICONIFY_EVENT: ignore_event = Qiconify_frame; break; |
| 3615 | case DEICONIFY_EVENT: ignore_event = Qmake_frame_visible; break; | 3615 | case DEICONIFY_EVENT: ignore_event = Qmake_frame_visible; break; |
| 3616 | case SELECTION_REQUEST_EVENT: ignore_event = Qselection_request; break; | 3616 | case SELECTION_REQUEST_EVENT: ignore_event = Qselection_request; break; |
| 3617 | #ifdef USE_FILE_NOTIFY | ||
| 3618 | case FILE_NOTIFY_EVENT: ignore_event = Qfile_notify; break; | ||
| 3619 | #endif | ||
| 3620 | #ifdef HAVE_DBUS | ||
| 3621 | case DBUS_EVENT: ignore_event = Qdbus_event; break; | ||
| 3622 | #endif | ||
| 3617 | default: ignore_event = Qnil; break; | 3623 | default: ignore_event = Qnil; break; |
| 3618 | } | 3624 | } |
| 3619 | 3625 | ||