aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorKarl Heuer1996-02-20 19:09:48 +0000
committerKarl Heuer1996-02-20 19:09:48 +0000
commit270e80748abc928101f2396bc8a5a8fc396fa385 (patch)
treed1ad6aedab809c9f4d46c93c834e74d453b7d939 /src/eval.c
parente6fb4d11c9f2965dd8f589b5f244755f98f69dfe (diff)
downloademacs-270e80748abc928101f2396bc8a5a8fc396fa385.tar.gz
emacs-270e80748abc928101f2396bc8a5a8fc396fa385.zip
(init_eval_once): Initialize specpdl_ptr.
Diffstat (limited to 'src/eval.c')
-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 ()
157{ 157{
158 specpdl_size = 50; 158 specpdl_size = 50;
159 specpdl = (struct specbinding *) xmalloc (specpdl_size * sizeof (struct specbinding)); 159 specpdl = (struct specbinding *) xmalloc (specpdl_size * sizeof (struct specbinding));
160 specpdl_ptr = specpdl;
160 max_specpdl_size = 600; 161 max_specpdl_size = 600;
161 max_lisp_eval_depth = 200; 162 max_lisp_eval_depth = 200;
162 163