From: Juanma Barranquero Date: Tue, 26 Oct 2010 22:23:09 +0000 (+0200) Subject: * src/eval.c (init_eval_once): Set max_lisp_eval_depth to 600. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~45^2~447 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d46f6bbb57d153bfc09baf5da424a7e22c060b8c;p=emacs.git * src/eval.c (init_eval_once): Set max_lisp_eval_depth to 600. Otherwise, bootstrapping on Windows fails to compile macroexp.el. --- diff --git a/src/ChangeLog b/src/ChangeLog index b07ccf09db7..f3e2ea7854e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2010-10-26 Juanma Barranquero + + * eval.c (init_eval_once): Set max_lisp_eval_depth to 600; + otherwise, bootstrapping on Windows fails to compile macroexp.el. + 2010-10-26 Eli Zaretskii * cmds.c (internal_self_insert): Don't insert if argument N is diff --git a/src/eval.c b/src/eval.c index 15112d8659b..8580ceb8c38 100644 --- a/src/eval.c +++ b/src/eval.c @@ -176,7 +176,7 @@ init_eval_once (void) specpdl_ptr = specpdl; /* Don't forget to update docs (lispref node "Local Variables"). */ max_specpdl_size = 1000; - max_lisp_eval_depth = 500; + max_lisp_eval_depth = 600; Vrun_hooks = Qnil; }