From: Karl Heuer Date: Tue, 20 Feb 1996 19:09:48 +0000 (+0000) Subject: (init_eval_once): Initialize specpdl_ptr. X-Git-Tag: emacs-19.34~1260 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=270e80748abc928101f2396bc8a5a8fc396fa385;p=emacs.git (init_eval_once): Initialize specpdl_ptr. --- 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;