mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-08 04:30:45 -08:00
Add prototype for copy_hash_table and Fcopy_hash_table.
This commit is contained in:
parent
f899c503c5
commit
d9138d5de0
1 changed files with 2 additions and 0 deletions
|
|
@ -1778,6 +1778,7 @@ unsigned sxhash P_ ((Lisp_Object, int));
|
|||
Lisp_Object make_hash_table P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
|
||||
Lisp_Object, Lisp_Object, Lisp_Object,
|
||||
Lisp_Object));
|
||||
Lisp_Object copy_hash_table P_ ((struct Lisp_Hash_Table *));
|
||||
int hash_lookup P_ ((struct Lisp_Hash_Table *, Lisp_Object, unsigned *));
|
||||
void hash_put P_ ((struct Lisp_Hash_Table *, Lisp_Object, Lisp_Object,
|
||||
unsigned));
|
||||
|
|
@ -1786,6 +1787,7 @@ void hash_clear P_ ((struct Lisp_Hash_Table *));
|
|||
void remove_hash_entry P_ ((struct Lisp_Hash_Table *, int));
|
||||
EXFUN (Fsxhash, 1);
|
||||
EXFUN (Fmake_hash_table, MANY);
|
||||
EXFUN (Fcopy_hash_table, 1);
|
||||
EXFUN (Fhash_table_count, 1);
|
||||
EXFUN (Fhash_table_rehash_size, 1);
|
||||
EXFUN (Fhash_table_rehash_threshold, 1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue