summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--gc.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e6e383f0..c9decb79 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2015-04-10 Kaz Kylheku <kaz@kylheku.com>
+ * gc.c (sweep): Fix comment referring to nonexistent identifier.
+
+2015-04-10 Kaz Kylheku <kaz@kylheku.com>
+
* eval.c (eval_init): There is an until_s global variable, so
no need to intern the symbol when registering me_until.
diff --git a/gc.c b/gc.c
index 83f016d2..68329052 100644
--- a/gc.c
+++ b/gc.c
@@ -551,7 +551,7 @@ static int_ptr_t sweep(void)
int i;
int limit = freshobj_idx;
- freshobj_idx = 0; /* sweep_one can put NOPROMOTE objects into freshobj */
+ freshobj_idx = 0; /* sweep_one rebuilds freshobj array */
/* No need to mark block defined via Valgrind API; everything
in the freshobj is an allocated node! */