diff options
| author | Richard M. Stallman | 2005-08-09 12:10:40 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-08-09 12:10:40 +0000 |
| commit | a8f0f551007be7c04b1fe039a8b74f3a605146f3 (patch) | |
| tree | b896f2cf284c9db0277764d4a93446eb82615420 /src/bytecode.c | |
| parent | 17365af46c54d8587a4e13c1c560b9869d57ecb5 (diff) | |
| download | emacs-a8f0f551007be7c04b1fe039a8b74f3a605146f3.tar.gz emacs-a8f0f551007be7c04b1fe039a8b74f3a605146f3.zip | |
(BYTE_CODE_QUIT): Throw t to Vthrow_on_input.
Diffstat (limited to 'src/bytecode.c')
| -rw-r--r-- | src/bytecode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c index 918ebdd550b..e5a3e7b2a7c 100644 --- a/src/bytecode.c +++ b/src/bytecode.c | |||
| @@ -389,7 +389,7 @@ unmark_byte_stack () | |||
| 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 | } \ |