diff options
| author | Thien-Thi Nguyen | 2004-11-20 10:26:24 +0000 |
|---|---|---|
| committer | Thien-Thi Nguyen | 2004-11-20 10:26:24 +0000 |
| commit | 345802a7c395dc6c45acd9a7d1b0f708e28f62e3 (patch) | |
| tree | c73ab3191e83878ec751b01bd3df1a8f9dc292de /src | |
| parent | 14e25c87b0f3041111156697f1fd56cec929cf4a (diff) | |
| download | emacs-345802a7c395dc6c45acd9a7d1b0f708e28f62e3.tar.gz emacs-345802a7c395dc6c45acd9a7d1b0f708e28f62e3.zip | |
(init_eval_once): Increase `max_specpdl_size' to 650.
Diffstat (limited to 'src')
| -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 d1d5d195762..adff3e8670c 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 = 600; | 207 | max_specpdl_size = 650; |
| 208 | max_lisp_eval_depth = 300; | 208 | max_lisp_eval_depth = 300; |
| 209 | 209 | ||
| 210 | Vrun_hooks = Qnil; | 210 | Vrun_hooks = Qnil; |