Function: copy-hash-table

copy-hash-table is a function defined in fns.c.

Signature

(copy-hash-table TABLE)

Documentation

Return a copy of hash table TABLE.

Other relevant functions are documented in the hash-table group.

View in manual

Probably introduced at or before Emacs version 21.1.

Shortdoc

;; hash-table
(copy-hash-table table)
    => #s(hash-table ...)

Source Code

// Defined in /usr/src/emacs/src/fns.c
{
  return copy_hash_table (check_hash_table (table));
}