aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorThien-Thi Nguyen2006-04-18 21:00:44 +0000
committerThien-Thi Nguyen2006-04-18 21:00:44 +0000
commit6588243de7882f4a3d2902688e363639ac375618 (patch)
tree8912fa27449600b5336cc7d7a82a9e6ea57155ee /src
parent5615dcc03b721ea3a4d619fe8c6f9a4232193c3d (diff)
downloademacs-6588243de7882f4a3d2902688e363639ac375618.tar.gz
emacs-6588243de7882f4a3d2902688e363639ac375618.zip
Comment munging wrt max-specpdl-size; nfc.
Diffstat (limited to 'src')
-rw-r--r--src/eval.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/eval.c b/src/eval.c
index 86ee384896c..20f29b5f06b 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -204,6 +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 /* Don't forget to update docs (lispref node "Local Variables"). */
207 max_specpdl_size = 1000; 208 max_specpdl_size = 1000;
208 max_lisp_eval_depth = 300; 209 max_lisp_eval_depth = 300;
209 210