diff options
| author | Richard M. Stallman | 1994-05-16 09:41:17 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-05-16 09:41:17 +0000 |
| commit | d0b688963bbf9b95ea2b7a45c7ddbc5468f835e6 (patch) | |
| tree | a8fb7f4278a8d000f3131d5c22d10de0d9f95223 /src/eval.c | |
| parent | cdf2fffe38b115c093737d0c80dc61081155888b (diff) | |
| download | emacs-d0b688963bbf9b95ea2b7a45c7ddbc5468f835e6.tar.gz emacs-d0b688963bbf9b95ea2b7a45c7ddbc5468f835e6.zip | |
(syms_of_eval): Doc fixes.
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eval.c b/src/eval.c index 8aadc0b0a9a..673e1bfda64 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -2494,7 +2494,7 @@ if that proves inconveniently small."); | |||
| 2494 | 2494 | ||
| 2495 | DEFVAR_LISP ("quit-flag", &Vquit_flag, | 2495 | DEFVAR_LISP ("quit-flag", &Vquit_flag, |
| 2496 | "Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil.\n\ | 2496 | "Non-nil causes `eval' to abort, unless `inhibit-quit' is non-nil.\n\ |
| 2497 | Typing C-G sets `quit-flag' non-nil, regardless of `inhibit-quit'."); | 2497 | Typing C-g sets `quit-flag' non-nil, regardless of `inhibit-quit'."); |
| 2498 | Vquit_flag = Qnil; | 2498 | Vquit_flag = Qnil; |
| 2499 | 2499 | ||
| 2500 | DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit, | 2500 | DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit, |
| @@ -2553,7 +2553,7 @@ See also variable `debug-on-quit'."); | |||
| 2553 | Vdebug_on_error = Qnil; | 2553 | Vdebug_on_error = Qnil; |
| 2554 | 2554 | ||
| 2555 | DEFVAR_BOOL ("debug-on-quit", &debug_on_quit, | 2555 | DEFVAR_BOOL ("debug-on-quit", &debug_on_quit, |
| 2556 | "*Non-nil means enter debugger if quit is signaled (C-G, for example).\n\ | 2556 | "*Non-nil means enter debugger if quit is signaled (C-g, for example).\n\ |
| 2557 | Does not apply if quit is handled by a `condition-case'."); | 2557 | Does not apply if quit is handled by a `condition-case'."); |
| 2558 | debug_on_quit = 0; | 2558 | debug_on_quit = 0; |
| 2559 | 2559 | ||