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:
parent
d33a00f212
commit
716acfce85
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue