diff options
| author | Eli Zaretskii | 2023-12-19 14:20:24 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2023-12-19 14:20:24 +0200 |
| commit | 281be72422f42fcc84d43f50723a3e91b7d03cbc (patch) | |
| tree | 2d437a5f7f52064bf172e421c25b84c4e05e9abe /src | |
| parent | c0c79b0b4602d7c3505c41e08596386f725c2afd (diff) | |
| download | emacs-281be72422f42fcc84d43f50723a3e91b7d03cbc.tar.gz emacs-281be72422f42fcc84d43f50723a3e91b7d03cbc.zip | |
; * src/eval.c (syms_of_eval) <debugger>: Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/eval.c | 12 |
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. |
| 4350 | If due to frame exit, args are `exit' and the value being returned; | 4350 | If 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. |
| 4352 | If due to error, args are `error' and a list of the args to `signal'. | 4352 | If due to error, arguments are `error' and a list of arguments to `signal'. |
| 4353 | If due to `apply' or `funcall' entry, one arg, `lambda'. | 4353 | If due to `apply' or `funcall' entry, one argument, `lambda'. |
| 4354 | If due to `eval' entry, one arg, t. | 4354 | If due to `eval' entry, one argument, t. |
| 4355 | IF the desired entry point of the debugger is higher in the call stack, | 4355 | IF the desired entry point of the debugger is higher in the call stack, |
| 4356 | it can can be specified with the keyword argument `:backtrace-base' | 4356 | it can be specified with the keyword argument `:backtrace-base', whose |
| 4357 | whose format should be the same as the BASE arg of `backtrace-frame'. */); | 4357 | format 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, |