aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMattias EngdegÄrd2020-01-01 16:35:54 +0100
committerMattias EngdegÄrd2020-01-01 16:43:58 +0100
commitbb9402e6e9c12938aee31b81e25511eb1f6335d2 (patch)
tree530bc0f3049d8fb75c55d663d55599d669c20afa /doc
parent4011b179ffe88a0afb3b73dd1af6a75dc0c2c772 (diff)
downloademacs-bb9402e6e9c12938aee31b81e25511eb1f6335d2.tar.gz
emacs-bb9402e6e9c12938aee31b81e25511eb1f6335d2.zip
Raise default max-specpdl-size value
Occasionally, loading cl-generic.el from source requires max_specpdl_size > 1600 when bootstrapping, and thus fails. In any case we are very close to the limit. * src/eval.c (init_eval_once): Raise max_specpdl_size to 1800. * doc/lispref/variables.texi (Local Variables): Update docs.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/variables.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispref/variables.texi b/doc/lispref/variables.texi
index 1ec97e2f3de..568eb0f7836 100644
--- a/doc/lispref/variables.texi
+++ b/doc/lispref/variables.texi
@@ -322,7 +322,7 @@ that Lisp avoids infinite recursion on an ill-defined function.
322@code{max-lisp-eval-depth} provides another limit on depth of nesting. 322@code{max-lisp-eval-depth} provides another limit on depth of nesting.
323@xref{Definition of max-lisp-eval-depth,, Eval}. 323@xref{Definition of max-lisp-eval-depth,, Eval}.
324 324
325The default value is 1600. Entry to the Lisp debugger increases the 325The default value is 1800. Entry to the Lisp debugger increases the
326value, if there is little room left, to make sure the debugger itself 326value, if there is little room left, to make sure the debugger itself
327has room to execute. 327has room to execute.
328@end defopt 328@end defopt