* src/fns.c (hash_table_rehash): Add a comment to explain that
hash_table_rehash is not used in "normal" rehashing, but only in the
rare case of rehashing on the first access to a preloaded hash-table.
}
}
+/* Recompute the hashes (and hence also the "next" pointers).
+ Normally there's never a need to recompute hashes.
+ This is done only on first-access to a hash-table loaded from
+ the "pdump", because the object's addresses may have changed, thus
+ affecting their hash. */
void
hash_table_rehash (struct Lisp_Hash_Table *h)
{