mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-24 05:47:36 +00:00
fix max depth compilation
This commit is contained in:
parent
a1fd3d6eac
commit
787444c769
1 changed files with 6 additions and 0 deletions
|
|
@ -219,8 +219,14 @@ void
|
|||
init_eval_once (void)
|
||||
{
|
||||
/* Don't forget to update docs (lispref node "Local Variables"). */
|
||||
#ifndef HAVE_NATIVE_COMP
|
||||
max_specpdl_size = 1600; /* 1500 is not enough for cl-generic.el. */
|
||||
max_lisp_eval_depth = 800;
|
||||
#else
|
||||
/* Original values increased for comp.el. */
|
||||
max_specpdl_size = 2100;
|
||||
max_lisp_eval_depth = 1400;
|
||||
#endif
|
||||
Vrun_hooks = Qnil;
|
||||
pdumper_do_now_and_after_load (init_eval_once_for_pdumper);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue