Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
716acfce
Commit
716acfce
authored
Jun 14, 1994
by
Richard M. Stallman
Browse files
(init_eval_once): Call xmalloc, not malloc.
parent
d33a00f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/eval.c
src/eval.c
+1
-1
No files found.
src/eval.c
View file @
716acfce
...
@@ -149,7 +149,7 @@ extern Lisp_Object ml_apply (); /* Apply a mocklisp function to unevaluated argu
...
@@ -149,7 +149,7 @@ extern Lisp_Object ml_apply (); /* Apply a mocklisp function to unevaluated argu
init_eval_once
()
init_eval_once
()
{
{
specpdl_size
=
50
;
specpdl_size
=
50
;
specpdl
=
(
struct
specbinding
*
)
malloc
(
specpdl_size
*
sizeof
(
struct
specbinding
));
specpdl
=
(
struct
specbinding
*
)
x
malloc
(
specpdl_size
*
sizeof
(
struct
specbinding
));
max_specpdl_size
=
600
;
max_specpdl_size
=
600
;
max_lisp_eval_depth
=
200
;
max_lisp_eval_depth
=
200
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment