diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-08-09 12:10:29 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-08-09 12:10:29 +0000 |
commit | 17365af46c54d8587a4e13c1c560b9869d57ecb5 (patch) | |
tree | f4c1b580647524f82377bdaa4fa906c596317cd3 /src | |
parent | fb5a74cd19ffc55245bfe300734929356dfef77c (diff) | |
download | emacs-17365af46c54d8587a4e13c1c560b9869d57ecb5.tar.gz |
(QUIT): Throw t to Vthrow_on_input.
Diffstat (limited to 'src')
-rw-r--r-- | src/lisp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index 375e0e9cb9b..70f5ddffa94 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -1797,7 +1797,7 @@ extern int interrupt_input_pending; Lisp_Object flag = Vquit_flag; \ Vquit_flag = Qnil; \ if (EQ (Vthrow_on_input, flag)) \ - Fthrow (Vthrow_on_input, Qnil); \ + Fthrow (Vthrow_on_input, Qt); \ Fsignal (Qquit, Qnil); \ } \ else if (interrupt_input_pending) \ |