comparison src/bytecode.c @ 64848:51a9d1289e86

(BYTE_CODE_QUIT): Throw t to Vthrow_on_input.
author Richard M. Stallman <rms@gnu.org>
date Tue, 09 Aug 2005 12:10:40 +0000
parents a0d1312ede66
children 098219e8d2e8 2d92f5c9d6ae
comparison
equal deleted inserted replaced
64847:ac757cf8a328 64848:51a9d1289e86
387 { \ 387 { \
388 Lisp_Object flag = Vquit_flag; \ 388 Lisp_Object flag = Vquit_flag; \
389 Vquit_flag = Qnil; \ 389 Vquit_flag = Qnil; \
390 BEFORE_POTENTIAL_GC (); \ 390 BEFORE_POTENTIAL_GC (); \
391 if (EQ (Vthrow_on_input, flag)) \ 391 if (EQ (Vthrow_on_input, flag)) \
392 Fthrow (Vthrow_on_input, Qnil); \ 392 Fthrow (Vthrow_on_input, Qt); \
393 Fsignal (Qquit, Qnil); \ 393 Fsignal (Qquit, Qnil); \
394 AFTER_POTENTIAL_GC (); \ 394 AFTER_POTENTIAL_GC (); \
395 } \ 395 } \
396 } while (0) 396 } while (0)
397 397