summaryrefslogtreecommitdiff
path: root/src/eval.c
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2019-06-16 23:14:51 +0200
committerJuanma Barranquero <lekktu@gmail.com>2019-06-16 23:14:51 +0200
commit4156dd384a1b6d999bdbce30507bfab77e49ab4e (patch)
treeca9623980250c95f540023dc376108f2503bfc27 /src/eval.c
parent2f97200bb9d006e36417ee401c7f82952d3c84a2 (diff)
downloademacs-4156dd384a1b6d999bdbce30507bfab77e49ab4e.tar.gz
Bump up max_specpdl_size to 1500. (Bug#36216)
* src/eval.c (init_eval_once): Set max_specpdl_size to 1500. * doc/lispref/variables.texi (Local Variables): Document it.
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c
index 5bba8766373..0006123b0af 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -220,7 +220,7 @@ void
init_eval_once (void)
{
/* Don't forget to update docs (lispref node "Local Variables"). */
- max_specpdl_size = 1300; /* 1000 is not enough for CEDET's c-by.el. */
+ max_specpdl_size = 1500; /* 1300 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);