]> git.eshelyaron.com Git - emacs.git/commitdiff
(init_eval_once): Increase max_specpdl_size to 1000.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 7 Dec 2004 16:52:18 +0000 (16:52 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 7 Dec 2004 16:52:18 +0000 (16:52 +0000)
src/eval.c

index 4a63b022fd6045b8dd5c019d324b3b64e8a8eb8e..0eb519fbfcace281d9206842ec497cdaa5ad5a1e 100644 (file)
@@ -204,7 +204,7 @@ init_eval_once ()
   specpdl_size = 50;
   specpdl = (struct specbinding *) xmalloc (specpdl_size * sizeof (struct specbinding));
   specpdl_ptr = specpdl;
-  max_specpdl_size = 650;
+  max_specpdl_size = 1000;
   max_lisp_eval_depth = 300;
 
   Vrun_hooks = Qnil;