diff options
author | Kim F. Storm <storm@cua.dk> | 2005-08-15 12:22:43 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2005-08-15 12:22:43 +0000 |
commit | 85c9ff2c64cf0803ded6d1be07ba132856449bc7 (patch) | |
tree | 6b09c26e82205a1b193cbdf0fefa23c381eedce9 /src/lisp.h | |
parent | 3754bbd16e5a594c00356bbe0d7e7f51b9cddcb0 (diff) | |
download | emacs-85c9ff2c64cf0803ded6d1be07ba132856449bc7.tar.gz |
(QUIT) [!SYNC_INPUT]: Throw t to Vthrow_on_input.
Diffstat (limited to 'src/lisp.h')
-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 65dd4cbcea6..3133ef23dac 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -1813,7 +1813,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); \ } \ } while (0) |