aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorEli Zaretskii2023-12-19 14:20:24 +0200
committerEli Zaretskii2023-12-19 14:20:24 +0200
commit281be72422f42fcc84d43f50723a3e91b7d03cbc (patch)
tree2d437a5f7f52064bf172e421c25b84c4e05e9abe /src/eval.c
parentc0c79b0b4602d7c3505c41e08596386f725c2afd (diff)
downloademacs-281be72422f42fcc84d43f50723a3e91b7d03cbc.tar.gz
emacs-281be72422f42fcc84d43f50723a3e91b7d03cbc.zip
; * src/eval.c (syms_of_eval) <debugger>: Doc fix.
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/eval.c b/src/eval.c
index 419285eb694..5c9052cb9ab 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -4347,14 +4347,14 @@ might not be safe to continue. */);
4347 DEFSYM (Qdebugger, "debugger"); 4347 DEFSYM (Qdebugger, "debugger");
4348 DEFVAR_LISP ("debugger", Vdebugger, 4348 DEFVAR_LISP ("debugger", Vdebugger,
4349 doc: /* Function to call to invoke debugger. 4349 doc: /* Function to call to invoke debugger.
4350If due to frame exit, args are `exit' and the value being returned; 4350If due to frame exit, arguments are `exit' and the value being returned;
4351 this function's value will be returned instead of that. 4351 this function's value will be returned instead of that.
4352If due to error, args are `error' and a list of the args to `signal'. 4352If due to error, arguments are `error' and a list of arguments to `signal'.
4353If due to `apply' or `funcall' entry, one arg, `lambda'. 4353If due to `apply' or `funcall' entry, one argument, `lambda'.
4354If due to `eval' entry, one arg, t. 4354If due to `eval' entry, one argument, t.
4355IF the desired entry point of the debugger is higher in the call stack, 4355IF the desired entry point of the debugger is higher in the call stack,
4356it can can be specified with the keyword argument `:backtrace-base' 4356it can be specified with the keyword argument `:backtrace-base', whose
4357whose format should be the same as the BASE arg of `backtrace-frame'. */); 4357format should be the same as the BASE argument of `backtrace-frame'. */);
4358 Vdebugger = Qdebug_early; 4358 Vdebugger = Qdebug_early;
4359 4359
4360 DEFVAR_LISP ("signal-hook-function", Vsignal_hook_function, 4360 DEFVAR_LISP ("signal-hook-function", Vsignal_hook_function,