]> git.eshelyaron.com Git - emacs.git/commitdiff
(init_eval_once): Bump max_lisp_eval_depth to 400.
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 13 Jul 2007 01:06:36 +0000 (01:06 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 13 Jul 2007 01:06:36 +0000 (01:06 +0000)
src/ChangeLog
src/eval.c

index 80871a10449e90d7d0ed10c46a4919d49e094c66..c7cf6d241fc5beec07c976da0daeb23a0d7b492d 100644 (file)
@@ -1,3 +1,7 @@
+2007-07-13  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
+
 2007-07-12  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * process.h (struct Lisp_Process): Turn slots infd, outfd,
index 6707849a8409394013158d4848bacb4eff89af1f..f899e250eaddca66f39cc834fba0a842030b3c62 100644 (file)
@@ -220,7 +220,7 @@ init_eval_once ()
   specpdl_ptr = specpdl;
   /* Don't forget to update docs (lispref node "Local Variables").  */
   max_specpdl_size = 1000;
-  max_lisp_eval_depth = 300;
+  max_lisp_eval_depth = 400;
 
   Vrun_hooks = Qnil;
 }