summaryrefslogtreecommitdiff
path: root/src/alloc.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2002-01-27 22:53:26 +0000
committerRichard M. Stallman <rms@gnu.org>2002-01-27 22:53:26 +0000
commit94a877eff75c17809935dc19896ad900ec4ac430 (patch)
tree51876e45e0e1a8222adf75cf49149228e5636390 /src/alloc.c
parent989b6695487f091060303a3fa2409f2eff0d0c0c (diff)
downloademacs-94a877eff75c17809935dc19896ad900ec4ac430.tar.gz
Comment change.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 4ea7470fe8d..56832afc70d 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -4644,6 +4644,10 @@ mark_object (argptr)
h->size |= ARRAY_MARK_FLAG;
/* Mark contents. */
+ /* Do not mark next_free or next_weak.
+ Being in the next_weak chain
+ should not keep the hash table alive.
+ No need to mark `count' since it is an integer. */
mark_object (&h->test);
mark_object (&h->weak);
mark_object (&h->rehash_size);