Mercurial > emacs
changeset 111196:0bb15e5b9690
* src/eval.c (init_eval_once): Set max_lisp_eval_depth to 600.
Otherwise, bootstrapping on Windows fails to compile macroexp.el.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Wed, 27 Oct 2010 00:23:09 +0200 |
parents | bad8d0e56e0f |
children | d4d3d19301c2 |
files | src/ChangeLog src/eval.c |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Tue Oct 26 22:08:30 2010 +0000 +++ b/src/ChangeLog Wed Oct 27 00:23:09 2010 +0200 @@ -1,3 +1,8 @@ +2010-10-26 Juanma Barranquero <lekktu@gmail.com> + + * eval.c (init_eval_once): Set max_lisp_eval_depth to 600; + otherwise, bootstrapping on Windows fails to compile macroexp.el. + 2010-10-26 Eli Zaretskii <eliz@gnu.org> * cmds.c (internal_self_insert): Don't insert if argument N is
--- a/src/eval.c Tue Oct 26 22:08:30 2010 +0000 +++ b/src/eval.c Wed Oct 27 00:23:09 2010 +0200 @@ -176,7 +176,7 @@ specpdl_ptr = specpdl; /* Don't forget to update docs (lispref node "Local Variables"). */ max_specpdl_size = 1000; - max_lisp_eval_depth = 500; + max_lisp_eval_depth = 600; Vrun_hooks = Qnil; }