From: Stefan Monnier Date: Tue, 7 Dec 2004 16:52:18 +0000 (+0000) Subject: (init_eval_once): Increase max_specpdl_size to 1000. X-Git-Tag: ttn-vms-21-2-B4~3385 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a4547405f5d246a1fe97dd3ab52368dbf3e9729f;p=emacs.git (init_eval_once): Increase max_specpdl_size to 1000. --- diff --git a/src/eval.c b/src/eval.c index 4a63b022fd6..0eb519fbfca 100644 --- a/src/eval.c +++ b/src/eval.c @@ -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;