aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/eval.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 80871a10449..c7cf6d241fc 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
4
12007-07-12 Stefan Monnier <monnier@iro.umontreal.ca> 52007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * process.h (struct Lisp_Process): Turn slots infd, outfd, 7 * process.h (struct Lisp_Process): Turn slots infd, outfd,
diff --git a/src/eval.c b/src/eval.c
index 6707849a840..f899e250ead 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -220,7 +220,7 @@ init_eval_once ()
220 specpdl_ptr = specpdl; 220 specpdl_ptr = specpdl;
221 /* Don't forget to update docs (lispref node "Local Variables"). */ 221 /* Don't forget to update docs (lispref node "Local Variables"). */
222 max_specpdl_size = 1000; 222 max_specpdl_size = 1000;
223 max_lisp_eval_depth = 300; 223 max_lisp_eval_depth = 400;
224 224
225 Vrun_hooks = Qnil; 225 Vrun_hooks = Qnil;
226} 226}