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