Mercurial > emacs
changeset 58827:d118146048e5
(init_eval_once): Increase max_specpdl_size to 1000.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Tue, 07 Dec 2004 16:52:18 +0000 |
parents | c85be9a6f1d2 |
children | 71aa1906226f |
files | src/eval.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/eval.c Tue Dec 07 15:42:19 2004 +0000 +++ b/src/eval.c Tue Dec 07 16:52:18 2004 +0000 @@ -204,7 +204,7 @@ 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;