diff options
Diffstat (limited to 'libguile/gc-mark.c')
-rw-r--r-- | libguile/gc-mark.c | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/libguile/gc-mark.c b/libguile/gc-mark.c index 3373cc882..95ac82088 100644 --- a/libguile/gc-mark.c +++ b/libguile/gc-mark.c @@ -144,7 +144,6 @@ Perhaps this would work better with an explicit markstack? */ - void scm_gc_mark_dependencies (SCM p) #define FUNC_NAME "scm_gc_mark_dependencies" @@ -155,7 +154,7 @@ scm_gc_mark_dependencies (SCM p) ptr = p; scm_mark_dependencies_again: - + cell_type = SCM_GC_CELL_TYPE (ptr); switch (SCM_ITAG7 (cell_type)) { @@ -415,16 +414,15 @@ gc_mark_loop: abort(); } } - - if (SCM_GC_MARK_P (ptr)) - { - return; - } - SCM_SET_GC_MARK (ptr); + if (SCM_GC_MARK_P (ptr)) + { + return; + } + SCM_SET_GC_MARK (ptr); - goto scm_mark_dependencies_again; + goto scm_mark_dependencies_again; } #undef FUNC_NAME |