emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: "make bootstrap" fails for the latest EMACS_22_BASE head on OS X


From: Stefan Monnier
Subject: Re: "make bootstrap" fails for the latest EMACS_22_BASE head on OS X
Date: Tue, 24 Jul 2007 15:05:07 -0400
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (gnu/linux)

> For the last few days (since 7/22?), I have not been able to successfully
> build Carbon Emacs on OS X using the latest CVS code from the
> EMACS_22_BASE.

> $ make bootstrap
[...]
> vc-hg.el:295:41:Error: Lisp nesting exceeds `max-lisp-eval-depth'

Does the patch below fix it?


        Stefan


--- eval.c      24 Jul 2007 15:03:06 -0400      1.276.2.2
+++ eval.c      24 Jul 2007 15:03:27 -0400      
@@ -221,7 +221,7 @@
   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;
 }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]