1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 03:40:56 -08:00

(init_eval_once): Call xmalloc, not malloc.

This commit is contained in:
Richard M. Stallman 1994-06-14 19:48:19 +00:00
parent d33a00f212
commit 716acfce85

View file

@ -149,7 +149,7 @@ extern Lisp_Object ml_apply (); /* Apply a mocklisp function to unevaluated argu
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;
}