diff options
| author | Stefan Monnier | 2004-12-07 16:52:18 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2004-12-07 16:52:18 +0000 |
| commit | a4547405f5d246a1fe97dd3ab52368dbf3e9729f (patch) | |
| tree | 58923968397af7f702c73d0cd050c56984ffc4ce /src/eval.c | |
| parent | be5472bd83feb309932edde7a5a05fd9d267e2f1 (diff) | |
| download | emacs-a4547405f5d246a1fe97dd3ab52368dbf3e9729f.tar.gz emacs-a4547405f5d246a1fe97dd3ab52368dbf3e9729f.zip | |
(init_eval_once): Increase max_specpdl_size to 1000.
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c index 4a63b022fd6..0eb519fbfca 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -204,7 +204,7 @@ init_eval_once () | |||
| 204 | specpdl_size = 50; | 204 | specpdl_size = 50; |
| 205 | specpdl = (struct specbinding *) xmalloc (specpdl_size * sizeof (struct specbinding)); | 205 | specpdl = (struct specbinding *) xmalloc (specpdl_size * sizeof (struct specbinding)); |
| 206 | specpdl_ptr = specpdl; | 206 | specpdl_ptr = specpdl; |
| 207 | max_specpdl_size = 650; | 207 | max_specpdl_size = 1000; |
| 208 | max_lisp_eval_depth = 300; | 208 | max_lisp_eval_depth = 300; |
| 209 | 209 | ||
| 210 | Vrun_hooks = Qnil; | 210 | Vrun_hooks = Qnil; |