diff options
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c index 0eb519fbfca..df528e3da80 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -1178,6 +1178,7 @@ unwind_to_catch (catch, value) | |||
| 1178 | set_poll_suppress_count (catch->poll_suppress_count); | 1178 | set_poll_suppress_count (catch->poll_suppress_count); |
| 1179 | interrupt_input_blocked = catch->interrupt_input_blocked; | 1179 | interrupt_input_blocked = catch->interrupt_input_blocked; |
| 1180 | handling_signal = 0; | 1180 | handling_signal = 0; |
| 1181 | immediate_quit = 0; | ||
| 1181 | 1182 | ||
| 1182 | do | 1183 | do |
| 1183 | { | 1184 | { |
| @@ -3331,7 +3332,11 @@ Emacs could overflow the real C stack, and crash. */); | |||
| 3331 | 3332 | ||
| 3332 | DEFVAR_LISP ("quit-flag", &Vquit_flag, | 3333 | DEFVAR_LISP ("quit-flag", &Vquit_flag, |
| 3333 | doc: /* Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil. | 3334 | doc: /* Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil. |
| 3334 | Typing C-g sets `quit-flag' non-nil, regardless of `inhibit-quit'. */); | 3335 | If the value is t, that means do an ordinary quit. |
| 3336 | If the value equals `throw-on-input', that means quit by throwing | ||
| 3337 | to the tag specified in `throw-on-input'; it's for handling `while-no-input'. | ||
| 3338 | Typing C-g sets `quit-flag' to t, regardless of `inhibit-quit', | ||
| 3339 | but `inhibit-quit' non-nil prevents anything from taking notice of that. */); | ||
| 3335 | Vquit_flag = Qnil; | 3340 | Vquit_flag = Qnil; |
| 3336 | 3341 | ||
| 3337 | DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit, | 3342 | DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit, |