aboutsummaryrefslogtreecommitdiffstats
path: root/lispref/debugging.texi
diff options
context:
space:
mode:
Diffstat (limited to 'lispref/debugging.texi')
-rw-r--r--lispref/debugging.texi12
1 files changed, 6 insertions, 6 deletions
diff --git a/lispref/debugging.texi b/lispref/debugging.texi
index 0af1f16127d..66663aad131 100644
--- a/lispref/debugging.texi
+++ b/lispref/debugging.texi
@@ -471,15 +471,15 @@ entered--entering a function:} as a line of text at the top of the
471buffer. 471buffer.
472 472
473@item debug 473@item debug
474@code{debug} as first argument indicates a call to @code{debug} 474@code{debug} as first argument means @code{debug} was called because
475because of entry to a function that was set to debug on entry. The 475of entry to a function that was set to debug on entry. The debugger
476debugger displays @samp{Debugger entered--entering a function:}, just 476displays the string @samp{Debugger entered--entering a function:},
477as in the @code{lambda} case. It also marks the stack frame for that 477just as in the @code{lambda} case. It also marks the stack frame for
478function so that it will invoke the debugger when exited. 478that function so that it will invoke the debugger when exited.
479 479
480@item t 480@item t
481When the first argument is @code{t}, this indicates a call to 481When the first argument is @code{t}, this indicates a call to
482@code{debug} due to evaluation of a list form when 482@code{debug} due to evaluation of a function call form when
483@code{debug-on-next-call} is non-@code{nil}. The debugger displays 483@code{debug-on-next-call} is non-@code{nil}. The debugger displays
484@samp{Debugger entered--beginning evaluation of function call form:} 484@samp{Debugger entered--beginning evaluation of function call form:}
485as the top line in the buffer. 485as the top line in the buffer.