summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1996-02-20 19:09:48 +0000
committerKarl Heuer <kwzh@gnu.org>1996-02-20 19:09:48 +0000
commit270e80748abc928101f2396bc8a5a8fc396fa385 (patch)
treed1ad6aedab809c9f4d46c93c834e74d453b7d939
parente6fb4d11c9f2965dd8f589b5f244755f98f69dfe (diff)
downloademacs-270e80748abc928101f2396bc8a5a8fc396fa385.tar.gz
(init_eval_once): Initialize specpdl_ptr.
-rw-r--r--src/eval.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/eval.c b/src/eval.c
index cecf18cbfeb..ed4a1465c86 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -157,6 +157,7 @@ init_eval_once ()
{
specpdl_size = 50;
specpdl = (struct specbinding *) xmalloc (specpdl_size * sizeof (struct specbinding));
+ specpdl_ptr = specpdl;
max_specpdl_size = 600;
max_lisp_eval_depth = 200;