From bf87b4d5a83cff934b469a95c14d782f68ea963a Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Wed, 8 Apr 2015 18:24:04 +0300 Subject: [PATCH] * src/eval.c (init_eval_once): Bump max_lisp_eval_depth to 800 Fixes: bug#17517 --- src/eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) specpdl = specpdl_ptr = pdlvec + 1; /* Don't forget to update docs (lispref node "Local Variables"). */ max_specpdl_size = 1300; /* 1000 is not enough for CEDET's c-by.el. */ - max_lisp_eval_depth = 600; + max_lisp_eval_depth = 800; Vrun_hooks = Qnil; } -- 2.39.2