diff options
| author | Karl Heuer | 1996-02-20 19:09:48 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-02-20 19:09:48 +0000 |
| commit | 270e80748abc928101f2396bc8a5a8fc396fa385 (patch) | |
| tree | d1ad6aedab809c9f4d46c93c834e74d453b7d939 /src/eval.c | |
| parent | e6fb4d11c9f2965dd8f589b5f244755f98f69dfe (diff) | |
| download | emacs-270e80748abc928101f2396bc8a5a8fc396fa385.tar.gz emacs-270e80748abc928101f2396bc8a5a8fc396fa385.zip | |
(init_eval_once): Initialize specpdl_ptr.
Diffstat (limited to 'src/eval.c')
| -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 () | |||
| 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 | ||