From: Andrea Corallo Date: Tue, 9 Mar 2021 09:03:47 +0000 (+0100) Subject: Merge commit '9cbdf20316' into native-comp X-Git-Tag: emacs-28.0.90~2727^2~82 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=43b0df62cd5922df5495b3f4aee5b7beca14384f;p=emacs.git Merge commit '9cbdf20316' into native-comp --- 43b0df62cd5922df5495b3f4aee5b7beca14384f diff --cc src/eval.c index 10e53cf9aed,ddaa8edd817..cf5ca3b4bbd --- a/src/eval.c +++ b/src/eval.c @@@ -219,17 -219,8 +219,17 @@@ voi init_eval_once (void) { /* Don't forget to update docs (lispref node "Local Variables"). */ - max_specpdl_size = 1800; /* See bug#46818. */ - max_lisp_eval_depth = 800; + if (!NATIVE_COMP_FLAG) + { - max_specpdl_size = 1600; /* 1500 is not enough for cl-generic.el. */ ++ max_specpdl_size = 1800; /* See bug#46818. */ + max_lisp_eval_depth = 800; + } + else + { + /* Original values increased for comp.el. */ + max_specpdl_size = 2500; + max_lisp_eval_depth = 1600; + } Vrun_hooks = Qnil; pdumper_do_now_and_after_load (init_eval_once_for_pdumper); }