diff options
| author | Karl Heuer <kwzh@gnu.org> | 1996-02-20 19:09:48 +0000 |
|---|---|---|
| committer | Karl Heuer <kwzh@gnu.org> | 1996-02-20 19:09:48 +0000 |
| commit | 270e80748abc928101f2396bc8a5a8fc396fa385 (patch) | |
| tree | d1ad6aedab809c9f4d46c93c834e74d453b7d939 | |
| parent | e6fb4d11c9f2965dd8f589b5f244755f98f69dfe (diff) | |
| download | emacs-270e80748abc928101f2396bc8a5a8fc396fa385.tar.gz | |
(init_eval_once): Initialize specpdl_ptr.
| -rw-r--r-- | src/eval.c | 1 |
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; |
