]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/eval.c (init_eval_once): Set max_lisp_eval_depth to 600.
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 26 Oct 2010 22:23:09 +0000 (00:23 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 26 Oct 2010 22:23:09 +0000 (00:23 +0200)
  Otherwise, bootstrapping on Windows fails to compile macroexp.el.

src/ChangeLog
src/eval.c

index b07ccf09db7fef1c4917ce4d77a35832554efcbd..f3e2ea7854ef859020932865a0b3cc374cc34cfa 100644 (file)
@@ -1,3 +1,8 @@
+2010-10-26  Juanma Barranquero  <lekktu@gmail.com>
+
+       * 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  <eliz@gnu.org>
 
        * cmds.c (internal_self_insert): Don't insert if argument N is
index 15112d8659b2b69dfccb48abbd4050e61b8699dd..8580ceb8c384481b561fbf840b70c8a42fa10fae 100644 (file)
@@ -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;
 }