diff options
| author | Thierry Volpiatto | 2016-11-30 21:22:04 +0100 |
|---|---|---|
| committer | Thierry Volpiatto | 2016-11-30 21:22:04 +0100 |
| commit | 319bafc9b28bd5bffb92a97a8ab53b9a3b97e6fd (patch) | |
| tree | 2a8d1fc9f789dcbe27c414aa770fce07b074238f /src | |
| parent | a283d655db88cdcc8cb53d8e2578e1cdf751c84b (diff) | |
| download | emacs-319bafc9b28bd5bffb92a97a8ab53b9a3b97e6fd.tar.gz emacs-319bafc9b28bd5bffb92a97a8ab53b9a3b97e6fd.zip | |
Fix Condition in kbd_buffer_store_buffered_event (bug#19547).
* src/keyboard.c (kbd_buffer_store_buffered_event): Should be NILP and not
!NILP.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index e70140ca375..01b9b3c6ba2 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -3583,7 +3583,7 @@ kbd_buffer_store_buffered_event (union buffered_input_event *event, | |||
| 3583 | /* If we're inside while-no-input, and this event qualifies | 3583 | /* If we're inside while-no-input, and this event qualifies |
| 3584 | as input, set quit-flag to cause an interrupt. */ | 3584 | as input, set quit-flag to cause an interrupt. */ |
| 3585 | if (!NILP (Vthrow_on_input) | 3585 | if (!NILP (Vthrow_on_input) |
| 3586 | && !NILP (Fmemq (ignore_event, Vwhile_no_input_ignore_events))) | 3586 | && NILP (Fmemq (ignore_event, Vwhile_no_input_ignore_events))) |
| 3587 | { | 3587 | { |
| 3588 | Vquit_flag = Vthrow_on_input; | 3588 | Vquit_flag = Vthrow_on_input; |
| 3589 | /* If we're inside a function that wants immediate quits, | 3589 | /* If we're inside a function that wants immediate quits, |