diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/eval.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/eval.c b/src/eval.c index cb107191244..5dbc7e8f375 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -1208,8 +1208,8 @@ See also the function `condition-case'.") | |||
| 1208 | #else | 1208 | #else |
| 1209 | if (EQ (clause, Qlambda)) | 1209 | if (EQ (clause, Qlambda)) |
| 1210 | { | 1210 | { |
| 1211 | /* We can't return values to code which signalled an error, but we | 1211 | /* We can't return values to code which signaled an error, but we |
| 1212 | can continue code which has signalled a quit. */ | 1212 | can continue code which has signaled a quit. */ |
| 1213 | if (EQ (error_symbol, Qquit)) | 1213 | if (EQ (error_symbol, Qquit)) |
| 1214 | return Qnil; | 1214 | return Qnil; |
| 1215 | else | 1215 | else |
| @@ -2813,7 +2813,7 @@ Typing C-g sets `quit-flag' non-nil, regardless of `inhibit-quit'."); | |||
| 2813 | DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit, | 2813 | DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit, |
| 2814 | "Non-nil inhibits C-g quitting from happening immediately.\n\ | 2814 | "Non-nil inhibits C-g quitting from happening immediately.\n\ |
| 2815 | Note that `quit-flag' will still be set by typing C-g,\n\ | 2815 | Note that `quit-flag' will still be set by typing C-g,\n\ |
| 2816 | so a quit will be signalled as soon as `inhibit-quit' is nil.\n\ | 2816 | so a quit will be signaled as soon as `inhibit-quit' is nil.\n\ |
| 2817 | To prevent this happening, set `quit-flag' to nil\n\ | 2817 | To prevent this happening, set `quit-flag' to nil\n\ |
| 2818 | before making `inhibit-quit' nil."); | 2818 | before making `inhibit-quit' nil."); |
| 2819 | Vinhibit_quit = Qnil; | 2819 | Vinhibit_quit = Qnil; |