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
d22be14d
Commit
d22be14d
authored
May 26, 2003
by
Andreas Schwab
Browse files
(Fgarbage_collect): Fix last change.
parent
326bc73d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
src/alloc.c
src/alloc.c
+7
-3
No files found.
src/alloc.c
View file @
d22be14d
...
...
@@ -4311,9 +4311,13 @@ Garbage collection happens automatically if you cons more than
#if (GC_MARK_STACK == GC_USE_GCPROS_AS_BEFORE \
|| GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES)
for
(
tail
=
gcprolist
;
tail
;
tail
=
tail
->
next
)
for
(
i
=
0
;
i
<
tail
->
nvars
;
i
++
)
XUNMARK
(
tail
->
var
[
i
]);
{
register
struct
gcpro
*
tail
;
for
(
tail
=
gcprolist
;
tail
;
tail
=
tail
->
next
)
for
(
i
=
0
;
i
<
tail
->
nvars
;
i
++
)
XUNMARK
(
tail
->
var
[
i
]);
}
#endif
unmark_byte_stack
();
...
...
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