# HG changeset patch # User Stefan Monnier # Date 1102438338 0 # Node ID d118146048e556c6329f036dbe518c3aec130f8f # Parent c85be9a6f1d22cb219f95639f53b4456702dcd74 (init_eval_once): Increase max_specpdl_size to 1000. diff -r c85be9a6f1d2 -r d118146048e5 src/eval.c --- a/src/eval.c Tue Dec 07 15:42:19 2004 +0000 +++ b/src/eval.c Tue Dec 07 16:52:18 2004 +0000 @@ -204,7 +204,7 @@ 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;