]> git.eshelyaron.com Git - emacs.git/commitdiff
(syms_of_eval): Doc fix for inhibit-quit.
authorKarl Heuer <kwzh@gnu.org>
Thu, 4 Jan 1996 23:01:45 +0000 (23:01 +0000)
committerKarl Heuer <kwzh@gnu.org>
Thu, 4 Jan 1996 23:01:45 +0000 (23:01 +0000)
src/eval.c

index cb10719124439ed8e6cebee363b4a2ad8b7c2364..5dbc7e8f37539227c67309c11929a4458cdc2e1f 100644 (file)
@@ -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;