aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c
index 906adb8bf8e..d35b71530ac 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -138,7 +138,7 @@ void
138init_eval_once (void) 138init_eval_once (void)
139{ 139{
140 enum { size = 50 }; 140 enum { size = 50 };
141 specpdl = (struct specbinding *) xmalloc (size * sizeof (struct specbinding)); 141 specpdl = xmalloc (size * sizeof (struct specbinding));
142 specpdl_size = size; 142 specpdl_size = size;
143 specpdl_ptr = specpdl; 143 specpdl_ptr = specpdl;
144 /* Don't forget to update docs (lispref node "Local Variables"). */ 144 /* Don't forget to update docs (lispref node "Local Variables"). */