diff options
author | Marius Vollmer <mvo@zagadka.de> | 2002-10-05 13:07:06 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2002-10-05 13:07:06 +0000 |
commit | a7d3641dc2dddba08b2e53bec396071c176d5a58 (patch) | |
tree | 7a95357b499d598e0e97e0a352c6d529225d2d8c /libguile/root.c | |
parent | f6b44bd99f1d4ae963dfb3aaa66a30e9c1574924 (diff) | |
download | guile-a7d3641dc2dddba08b2e53bec396071c176d5a58.tar.gz |
(root_mark): Mark active_asyncs slot.
Diffstat (limited to 'libguile/root.c')
-rw-r--r-- | libguile/root.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libguile/root.c b/libguile/root.c index 6f7d20297..93405f8a2 100644 --- a/libguile/root.c +++ b/libguile/root.c @@ -80,6 +80,7 @@ root_mark (SCM root) scm_gc_mark (s->cur_errp); /* No need to gc mark def_loadp */ scm_gc_mark (s->fluids); + scm_gc_mark (s->active_asyncs); return SCM_ROOT_STATE (root) -> parent; } |