summaryrefslogtreecommitdiff
path: root/src/lisp.h
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2019-07-13 21:43:46 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2019-07-13 21:45:27 -0700
commit61a79e88e4a29854af519bf0e48c3a71197e0ddd (patch)
tree98af9d0644c403c910d2aab7f8298e42449d93b0 /src/lisp.h
parentbcc3d36d8a4b2931ffb7a45436c4b014b1420ff3 (diff)
downloademacs-61a79e88e4a29854af519bf0e48c3a71197e0ddd.tar.gz
* src/lisp.h (struct Lisp_Hash_Table.count): Improve comment.
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h3
1 files changed, 2 insertions, 1 deletions
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. */