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
Eli Zaretskii <eliz <at> gnu.org> writes:
> You can do that with a 'switch' in C, or, better, with a C array that
> holds the symbols and their corresponding C event_kind values, like
> this:
>
> struct event_value {
> Lisp_Object event_symbol;
> enum event_kind event_kind;
> };
> static struct event_value symbol_to_kind[] = {
> { Qfocus_in, FOCUS_IN_EVENT },
> { Qhelp, HELP_EVENT },
> { Qiconify, ICONIFY_EVENT },
> ...
> };
>
> Then, for each symbol, you can find the corresponding event value by
> walking the array until you find a match.
Thanks, I will try to learn how to do this with both methods, only able
to produce errors for now :-)
I tried using Fmemq to check if event (translated with switch) is in new
variable Vwhile_no_input_ignore_events, but without success.
Will tell you as soon as I can end up with something more or less
usable.
Thanks again.
--
Thierry
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.