aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2019-10-01 04:33:28 +0200
committerJuanma Barranquero2019-10-01 04:33:28 +0200
commit24a3288278d9c152cc16b256287563c4b14d7238 (patch)
tree83f08e8ddd6631c3ca603ef7379fd249c88cad4e /src
parent5fe2538d0b3ee59f0f302d97b275f9433e679708 (diff)
downloademacs-24a3288278d9c152cc16b256287563c4b14d7238.tar.gz
emacs-24a3288278d9c152cc16b256287563c4b14d7238.zip
Bump up max_specpdl_size to 1600
* src/eval.c (init_eval_once): Set max_specpdl_size to 1600. * doc/lispref/variables.texi (Local Variables): Document it.
Diffstat (limited to 'src')
-rw-r--r--src/eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c
index 2bfc16eae0e..4bc96f96f2a 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -219,7 +219,7 @@ void
219init_eval_once (void) 219init_eval_once (void)
220{ 220{
221 /* Don't forget to update docs (lispref node "Local Variables"). */ 221 /* Don't forget to update docs (lispref node "Local Variables"). */
222 max_specpdl_size = 1500; /* 1300 is not enough for cl-generic.el. */ 222 max_specpdl_size = 1600; /* 1500 is not enough for cl-generic.el. */
223 max_lisp_eval_depth = 800; 223 max_lisp_eval_depth = 800;
224 Vrun_hooks = Qnil; 224 Vrun_hooks = Qnil;
225 pdumper_do_now_and_after_load (init_eval_once_for_pdumper); 225 pdumper_do_now_and_after_load (init_eval_once_for_pdumper);