]> git.eshelyaron.com Git - emacs.git/commitdiff
Bump up max_specpdl_size to 1600
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 1 Oct 2019 02:33:28 +0000 (04:33 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 1 Oct 2019 02:33:28 +0000 (04:33 +0200)
* src/eval.c (init_eval_once): Set max_specpdl_size to 1600.
* doc/lispref/variables.texi (Local Variables): Document it.

doc/lispref/variables.texi
src/eval.c

index d62a5aa3af2e9db11b4610fcaaca6cc68e860416..b49874f9eb26a0ad5d874d877a92b2d7d976c692 100644 (file)
@@ -303,7 +303,7 @@ that Lisp avoids infinite recursion on an ill-defined function.
 @code{max-lisp-eval-depth} provides another limit on depth of nesting.
 @xref{Definition of max-lisp-eval-depth,, Eval}.
 
-The default value is 1500.  Entry to the Lisp debugger increases the
+The default value is 1600.  Entry to the Lisp debugger increases the
 value, if there is little room left, to make sure the debugger itself
 has room to execute.
 @end defopt
index 2bfc16eae0e7c3223b2ab77f14ee1110a402b676..4bc96f96f2a0eb71faf8bdab4b293746f5c11a33 100644 (file)
@@ -219,7 +219,7 @@ void
 init_eval_once (void)
 {
   /* Don't forget to update docs (lispref node "Local Variables").  */
-  max_specpdl_size = 1500; /* 1300 is not enough for cl-generic.el.  */
+  max_specpdl_size = 1600; /* 1500 is not enough for cl-generic.el.  */
   max_lisp_eval_depth = 800;
   Vrun_hooks = Qnil;
   pdumper_do_now_and_after_load (init_eval_once_for_pdumper);