changeset 17061:bc9a4db95edb

(init_eval_once): Increase max_lisp_eval_depth to 300.
author Karl Heuer <kwzh@gnu.org>
date Sat, 22 Feb 1997 19:31:13 +0000
parents 8c069ef6e1c4
children a9f1f08212ec
files src/eval.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/eval.c	Sat Feb 22 19:30:55 1997 +0000
+++ b/src/eval.c	Sat Feb 22 19:31:13 1997 +0000
@@ -168,7 +168,7 @@
   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;
 }