From: Karl Heuer Date: Thu, 4 Jan 1996 23:01:45 +0000 (+0000) Subject: (syms_of_eval): Doc fix for inhibit-quit. X-Git-Tag: emacs-19.34~1915 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=690337b7e87d83f0e53cea023c071fb5af4cf145;p=emacs.git (syms_of_eval): Doc fix for inhibit-quit. --- 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'.") #else if (EQ (clause, Qlambda)) { - /* We can't return values to code which signalled an error, but we - can continue code which has signalled a quit. */ + /* We can't return values to code which signaled an error, but we + can continue code which has signaled a quit. */ if (EQ (error_symbol, Qquit)) return Qnil; else @@ -2813,7 +2813,7 @@ Typing C-g sets `quit-flag' non-nil, regardless of `inhibit-quit'."); DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit, "Non-nil inhibits C-g quitting from happening immediately.\n\ Note that `quit-flag' will still be set by typing C-g,\n\ -so a quit will be signalled as soon as `inhibit-quit' is nil.\n\ +so a quit will be signaled as soon as `inhibit-quit' is nil.\n\ To prevent this happening, set `quit-flag' to nil\n\ before making `inhibit-quit' nil."); Vinhibit_quit = Qnil;