aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c
index fc8787670e6..7a1d488c6a0 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -3600,7 +3600,9 @@ Garbage collection happens automatically if you cons more than\n\
3600 for (i = 0; i < tail->nvars; i++) 3600 for (i = 0; i < tail->nvars; i++)
3601 if (!XMARKBIT (tail->var[i])) 3601 if (!XMARKBIT (tail->var[i]))
3602 { 3602 {
3603 mark_object (&tail->var[i]); 3603 /* Explicit casting prevents compiler warning about
3604 discarding the `volatile' qualifier. */
3605 mark_object ((Lisp_Object *)&tail->var[i]);
3604 XMARK (tail->var[i]); 3606 XMARK (tail->var[i]);
3605 } 3607 }
3606#endif 3608#endif