Mercurial > emacs
diff src/alloc.c @ 43005:0ab7a9a5666c
Comment change.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Sun, 27 Jan 2002 22:53:26 +0000 |
| parents | 6643f205d5db |
| children | 630c8b6deafd |
line wrap: on
line diff
--- a/src/alloc.c Sun Jan 27 21:34:12 2002 +0000 +++ b/src/alloc.c Sun Jan 27 22:53:26 2002 +0000 @@ -4644,6 +4644,10 @@ 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);
