From 61a79e88e4a29854af519bf0e48c3a71197e0ddd Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 13 Jul 2019 21:43:46 -0700 Subject: [PATCH] * src/lisp.h (struct Lisp_Hash_Table.count): Improve comment. --- src/lisp.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lisp.h b/src/lisp.h index 4885e26e3f3..13014c82dc3 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -2278,7 +2278,8 @@ struct Lisp_Hash_Table 'index' are special and are either ignored by the GC or traced in a special way (e.g. because of weakness). */ - /* Number of key/value entries in the table. */ + /* Number of key/value entries in the table. This number is + negated if the table needs rehashing. */ ptrdiff_t count; /* Index of first free entry in free list, or -1 if none. */ -- 2.39.2