GNU bug report logs -
#78737
sit-for behavior changes when byte-compiled
Previous Next
Full log
View this message in rfc822 format
>> > (while t
>> > (let (evt (read-event))
>> > (do-something-with evt)))
>> >
>> > _can_ be interrupted?
>>
>> Usually the `(do-something-with evt)` part will offer some way to end
>> the loop.
>
> How? If read-event returns the character 7, then the information
> about the fact that C-g was typed is lost by the time we get to the
> do-something-with part, no?
AFAIK that information is in `evt` and hence not lost.
Usually `do-something-with` will look at `evt` and do various things
depending on the key that was pressed and usually one of those options
lets you end what you were doing.
Some code may assume they don't need to explicitly abort when `evt` is
7 because they rely on the current behavior of `read-event`, but AFAIK
that behavior is not completely reliable (e.g. it depends on
`inhibit-quit` and sometimes timing), so if we want to encourage use of
that feature we should try and make it more reliable.
Stefan
This bug report was last modified 4 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.