diff options
| author | Richard M. Stallman | 2004-12-13 19:05:42 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2004-12-13 19:05:42 +0000 |
| commit | 42ed718e49546a46536ba8f7de3110a67677b722 (patch) | |
| tree | c469d78f6c2ac26c15fdde74f4d41c1c557fc701 /src/eval.c | |
| parent | 08fdede61348f8c3cecc8d3b6506157df7c38843 (diff) | |
| download | emacs-42ed718e49546a46536ba8f7de3110a67677b722.tar.gz emacs-42ed718e49546a46536ba8f7de3110a67677b722.zip | |
(syms_of_eval) <quit-flag>: Doc fix.
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, |