diff options
| -rw-r--r-- | src/eval.c | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/src/eval.c b/src/eval.c index 66d34808f82..0f792b487ed 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -4311,13 +4311,19 @@ syms_of_eval (void) | |||
| 4311 | { | 4311 | { |
| 4312 | DEFVAR_INT ("max-specpdl-size", max_specpdl_size, | 4312 | DEFVAR_INT ("max-specpdl-size", max_specpdl_size, |
| 4313 | doc: /* Limit on number of Lisp variable bindings and `unwind-protect's. | 4313 | doc: /* Limit on number of Lisp variable bindings and `unwind-protect's. |
| 4314 | If Lisp code tries to increase the total number past this amount, | 4314 | |
| 4315 | an error is signaled. | 4315 | If Lisp code tries to use more bindings than this amount, an error is |
| 4316 | You can safely use a value considerably larger than the default value, | 4316 | signaled. |
| 4317 | if that proves inconveniently small. However, if you increase it too far, | 4317 | |
| 4318 | Emacs could run out of memory trying to make the stack bigger. | 4318 | You can safely increase this variable substantially if the default |
| 4319 | Note that this limit may be silently increased by the debugger | 4319 | value proves inconveniently small. However, if you increase it too |
| 4320 | if `debug-on-error' or `debug-on-quit' is set. */); | 4320 | much, Emacs could run out of memory trying to make the stack bigger. |
| 4321 | Note that this limit may be silently increased by the debugger if | ||
| 4322 | `debug-on-error' or `debug-on-quit' is set. | ||
| 4323 | |||
| 4324 | \"spec\" is short for \"special variables\", i.e., dynamically bound | ||
| 4325 | variables. \"PDL\" is short for \"push-down list\", which is an old | ||
| 4326 | term for \"stack\". */); | ||
| 4321 | 4327 | ||
| 4322 | DEFVAR_INT ("max-lisp-eval-depth", max_lisp_eval_depth, | 4328 | DEFVAR_INT ("max-lisp-eval-depth", max_lisp_eval_depth, |
| 4323 | doc: /* Limit on depth in `eval', `apply' and `funcall' before error. | 4329 | doc: /* Limit on depth in `eval', `apply' and `funcall' before error. |