aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2004-12-07 16:52:18 +0000
committerStefan Monnier <[email protected]>2004-12-07 16:52:18 +0000
commita4547405f5d246a1fe97dd3ab52368dbf3e9729f (patch)
tree58923968397af7f702c73d0cd050c56984ffc4ce
parentbe5472bd83feb309932edde7a5a05fd9d267e2f1 (diff)
(init_eval_once): Increase max_specpdl_size to 1000.
-rw-r--r--src/eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c
index 4a63b022fd..0eb519fbfc 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;