GNU bug report logs -
#19547
25.0.50; throw-on-input "fires" when switching workspace
Previous Next
Reported by: michael_heerdegen <at> web.de
Date: Fri, 9 Jan 2015 15:48:02 UTC
Severity: normal
Tags: fixed
Found in version 25.0.50
Fixed in version 26.1
Done: npostavs <at> users.sourceforge.net
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
Thierry Volpiatto <thierry.volpiatto <at> gmail.com> writes:
>
> + Lisp_Object ignore_event;
> +
> + switch (event->kind)
> + {
> + case FOCUS_IN_EVENT: ignore_event = Qfocus_in;
> + case FOCUS_OUT_EVENT: ignore_event = Qfocus_out;
> + case HELP_EVENT: ignore_event = Qhelp;
> + case ICONIFY_EVENT: ignore_event = Qiconify;
> + case DEICONIFY_EVENT: ignore_event = Qdeiconify;
> + case SELECTION_REQUEST_EVENT: ignore_event = Qselection_request;
You need a break at the end of each case, otherwise all events would be
treated as SELECTION_REQUEST_EVENT.
case FOCUS_IN_EVENT: ignore_event = Qfocus_in; break;
> + Vwhile_no_input_ignore_events = Qnil;
> + /* = listn (Qfocus_in, Qfocus_out, Qhelp, Qiconify, Qdeiconify, Qselection_request); */
I think something like this should work:
listn (CONSTYPE_PURE, 6, Qfocus_in, Qfocus_out, Qhelp, Qiconify, Qdeiconify, Qselection_request);
This bug report was last modified 8 years and 43 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.