]> git.eshelyaron.com Git - emacs.git/commitdiff
(debugger_may_continue, Vdebug_ignored_errors, call_debugger,
authorPavel Janík <Pavel@Janik.cz>
Fri, 2 Nov 2001 22:41:20 +0000 (22:41 +0000)
committerPavel Janík <Pavel@Janik.cz>
Fri, 2 Nov 2001 22:41:20 +0000 (22:41 +0000)
Fcondition_case, skip_debugger, unbind_to): Fix typos in comments.

src/ChangeLog
src/eval.c

index 4462c61f47ebdee4ceb1d844bc67633add5cbeb6..af78800a7486355b426d173f6f3dd56588800187 100644 (file)
@@ -1,5 +1,9 @@
 2001-11-02  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
 
+       * eval.c (debugger_may_continue, Vdebug_ignored_errors,
+       call_debugger, Fcondition_case, skip_debugger, unbind_to):
+       Fix typos in comments.
+
        * mocklisp.c (Fml_defun, Fml_while, Fml_substr): Remove commented
        and #ifdef'd-out code.
        Fix and reindent comments.
index 075bcf1d384f6df8ccecd779cbb56a1d35f096de..bcb3a76d70826dbfe86643dbbda09849ae1f8377 100644 (file)
@@ -134,7 +134,7 @@ int max_lisp_eval_depth;
 
 int debug_on_next_call;
 
-/* Non-zero means debuffer may continue.  This is zero when the
+/* Non-zero means debugger may continue.  This is zero when the
    debugger is called during redisplay, where it might not be safe to
    continue the interrupted redisplay. */
 
@@ -151,7 +151,7 @@ Lisp_Object Vstack_trace_on_error;
 Lisp_Object Vdebug_on_error;
 
 /* List of conditions and regexps specifying error messages which
-   do not enter the debugger even if Vdebug_on_errors says they should.  */
+   do not enter the debugger even if Vdebug_on_error says they should.  */
 
 Lisp_Object Vdebug_ignored_errors;
 
@@ -265,7 +265,7 @@ call_debugger (arg)
 
   /* Interrupting redisplay and resuming it later is not safe under
      all circumstances.  So, when the debugger returns, abort the
-     interupted redisplay by going back to the top-level.  */
+     interrupted redisplay by going back to the top-level.  */
   if (debug_while_redisplaying)
     Ftop_level ();
 
@@ -1184,7 +1184,7 @@ struct handler *handlerlist;
 
 DEFUN ("condition-case", Fcondition_case, Scondition_case, 2, UNEVALLED, 0,
        doc: /* Regain control when an error is signaled.
-executes BODYFORM and returns its value if no error happens.
+Executes BODYFORM and returns its value if no error happens.
 Each element of HANDLERS looks like (CONDITION-NAME BODY...)
 where the BODY is made of Lisp expressions.
 
@@ -1555,7 +1555,7 @@ wants_debugger (list, conditions)
 
 /* Return 1 if an error with condition-symbols CONDITIONS,
    and described by SIGNAL-DATA, should skip the debugger
-   according to debugger-ignore-errors.  */
+   according to debugger-ignored-errors.  */
 
 static int
 skip_debugger (conditions, data)
@@ -3069,8 +3069,8 @@ unbind_to (count, value)
       /* If the symbol is a list, it is really (SYMBOL WHERE
         . CURRENT-BUFFER) where WHERE is either nil, a buffer, or a
         frame.  If WHERE is a buffer or frame, this indicates we
-        bound a variable that had a buffer-local or frmae-local
-        binding..  WHERE nil means that the variable had the default
+        bound a variable that had a buffer-local or frame-local
+        binding.  WHERE nil means that the variable had the default
         value when it was bound.  CURRENT-BUFFER is the buffer that
          was current when the variable was bound.  */
       else if (CONSP (specpdl_ptr->symbol))