From: Richard M. Stallman Date: Tue, 9 Aug 2005 12:10:29 +0000 (+0000) Subject: (QUIT): Throw t to Vthrow_on_input. X-Git-Tag: emacs-pretest-22.0.90~7689 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=17365af46c54d8587a4e13c1c560b9869d57ecb5;p=emacs.git (QUIT): Throw t to Vthrow_on_input. --- 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) \