Function: hash-table-rehash-size

hash-table-rehash-size is a function defined in fns.c.

Signature

(hash-table-rehash-size TABLE)

Documentation

Return the rehash size of TABLE.

This function is for compatibility only; it returns a nominal value without current significance.

Probably introduced at or before Emacs version 21.1.

Source Code

// Defined in /usr/src/emacs/src/fns.c
{
  CHECK_HASH_TABLE (table);
  return make_float (1.5);  /* The old default rehash-size value.  */
}