diff options
| author | Stefan Monnier | 2009-08-21 14:53:02 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2009-08-21 14:53:02 +0000 |
| commit | f983eb8aaa706a2edf41485a0efdb8439f95dc5b (patch) | |
| tree | 4823d7844a7c8a314506314027065d1a20477720 /src/eval.c | |
| parent | 3e1ea34239ae3d0d327958c65b0cb28cf921adb8 (diff) | |
| download | emacs-f983eb8aaa706a2edf41485a0efdb8439f95dc5b.tar.gz emacs-f983eb8aaa706a2edf41485a0efdb8439f95dc5b.zip | |
(init_eval_once): Bump max_lisp_eval_depth to 500 for js.el.
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 3427d0f8573..94b6214715a 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -223,7 +223,7 @@ init_eval_once () | |||
| 223 | specpdl_ptr = specpdl; | 223 | specpdl_ptr = specpdl; |
| 224 | /* Don't forget to update docs (lispref node "Local Variables"). */ | 224 | /* Don't forget to update docs (lispref node "Local Variables"). */ |
| 225 | max_specpdl_size = 1000; | 225 | max_specpdl_size = 1000; |
| 226 | max_lisp_eval_depth = 400; | 226 | max_lisp_eval_depth = 500; |
| 227 | 227 | ||
| 228 | Vrun_hooks = Qnil; | 228 | Vrun_hooks = Qnil; |
| 229 | } | 229 | } |