summaryrefslogtreecommitdiffstats
path: root/gc.c
diff options
context:
space:
mode:
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gc.c b/gc.c
index 799bbf94..53357c0b 100644
--- a/gc.c
+++ b/gc.c
@@ -204,7 +204,7 @@ val make_obj(void)
}
#if CONFIG_GEN_GC
- if (freshobj_idx < FRESHOBJ_VEC_SIZE) {
+ if (!full_gc && freshobj_idx < FRESHOBJ_VEC_SIZE) {
more();
continue;
}