From: Karl Heuer Date: Sat, 22 Feb 1997 19:31:13 +0000 (+0000) Subject: (init_eval_once): Increase max_lisp_eval_depth to 300. X-Git-Tag: emacs-20.1~2884 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=969f51456a70e530c0874093f404675a6d5fc82b;p=emacs.git (init_eval_once): Increase max_lisp_eval_depth to 300. --- diff --git a/src/eval.c b/src/eval.c index 161861e41ed..139f3f3abf1 100644 --- a/src/eval.c +++ b/src/eval.c @@ -168,7 +168,7 @@ init_eval_once () specpdl = (struct specbinding *) xmalloc (specpdl_size * sizeof (struct specbinding)); specpdl_ptr = specpdl; max_specpdl_size = 600; - max_lisp_eval_depth = 200; + max_lisp_eval_depth = 300; Vrun_hooks = Qnil; }