Mercurial > emacs
diff src/eval.c @ 7885:bc6406a90796
(init_eval_once): Call xmalloc, not malloc.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Tue, 14 Jun 1994 19:48:19 +0000 |
| parents | 62e3e25bc8f6 |
| children | 131d3e43ea85 |
line wrap: on
line diff
--- a/src/eval.c Tue Jun 14 19:46:00 1994 +0000 +++ b/src/eval.c Tue Jun 14 19:48:19 1994 +0000 @@ -149,7 +149,7 @@ init_eval_once () { specpdl_size = 50; - specpdl = (struct specbinding *) malloc (specpdl_size * sizeof (struct specbinding)); + specpdl = (struct specbinding *) xmalloc (specpdl_size * sizeof (struct specbinding)); max_specpdl_size = 600; max_lisp_eval_depth = 200; }
