diff options
| author | Eli Zaretskii | 2015-04-08 18:24:04 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2015-04-08 18:24:04 +0300 |
| commit | bf87b4d5a83cff934b469a95c14d782f68ea963a (patch) | |
| tree | 2042acd9d122495b492433a51384df54de03cd44 /src | |
| parent | 74079cd58ba81b3ec81d44b474ad66ea2c99272d (diff) | |
| download | emacs-bf87b4d5a83cff934b469a95c14d782f68ea963a.tar.gz emacs-bf87b4d5a83cff934b469a95c14d782f68ea963a.zip | |
* src/eval.c (init_eval_once): Bump max_lisp_eval_depth to 800
Fixes: bug#17517
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 e828da9288f..11d08895c37 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -210,7 +210,7 @@ init_eval_once (void) | |||
| 210 | specpdl = specpdl_ptr = pdlvec + 1; | 210 | specpdl = specpdl_ptr = pdlvec + 1; |
| 211 | /* Don't forget to update docs (lispref node "Local Variables"). */ | 211 | /* Don't forget to update docs (lispref node "Local Variables"). */ |
| 212 | max_specpdl_size = 1300; /* 1000 is not enough for CEDET's c-by.el. */ | 212 | max_specpdl_size = 1300; /* 1000 is not enough for CEDET's c-by.el. */ |
| 213 | max_lisp_eval_depth = 600; | 213 | max_lisp_eval_depth = 800; |
| 214 | 214 | ||
| 215 | Vrun_hooks = Qnil; | 215 | Vrun_hooks = Qnil; |
| 216 | } | 216 | } |