aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2019-07-13 21:43:46 -0700
committerPaul Eggert2019-07-13 21:45:27 -0700
commit61a79e88e4a29854af519bf0e48c3a71197e0ddd (patch)
tree98af9d0644c403c910d2aab7f8298e42449d93b0
parentbcc3d36d8a4b2931ffb7a45436c4b014b1420ff3 (diff)
downloademacs-61a79e88e4a29854af519bf0e48c3a71197e0ddd.tar.gz
emacs-61a79e88e4a29854af519bf0e48c3a71197e0ddd.zip
* src/lisp.h (struct Lisp_Hash_Table.count): Improve comment.
-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
2278 'index' are special and are either ignored by the GC or traced in 2278 'index' are special and are either ignored by the GC or traced in
2279 a special way (e.g. because of weakness). */ 2279 a special way (e.g. because of weakness). */
2280 2280
2281 /* Number of key/value entries in the table. */ 2281 /* Number of key/value entries in the table. This number is
2282 negated if the table needs rehashing. */
2282 ptrdiff_t count; 2283 ptrdiff_t count;
2283 2284
2284 /* Index of first free entry in free list, or -1 if none. */ 2285 /* Index of first free entry in free list, or -1 if none. */