diff options
| author | Gerd Moellmann | 1999-08-22 20:47:17 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-08-22 20:47:17 +0000 |
| commit | d9138d5de0f3ffb08cfb1cb58efff3427f5736eb (patch) | |
| tree | 420f35b5cf980f6ff0c5374aad0bf04b903300f6 | |
| parent | f899c503c5703cd08e2993ae47b7f83ba9790d6e (diff) | |
| download | emacs-d9138d5de0f3ffb08cfb1cb58efff3427f5736eb.tar.gz emacs-d9138d5de0f3ffb08cfb1cb58efff3427f5736eb.zip | |
Add prototype for copy_hash_table and Fcopy_hash_table.
| -rw-r--r-- | src/lisp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lisp.h b/src/lisp.h index 14a985f0d12..2d9c1c5451f 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -1778,6 +1778,7 @@ unsigned sxhash P_ ((Lisp_Object, int)); | |||
| 1778 | Lisp_Object make_hash_table P_ ((Lisp_Object, Lisp_Object, Lisp_Object, | 1778 | Lisp_Object make_hash_table P_ ((Lisp_Object, Lisp_Object, Lisp_Object, |
| 1779 | Lisp_Object, Lisp_Object, Lisp_Object, | 1779 | Lisp_Object, Lisp_Object, Lisp_Object, |
| 1780 | Lisp_Object)); | 1780 | Lisp_Object)); |
| 1781 | Lisp_Object copy_hash_table P_ ((struct Lisp_Hash_Table *)); | ||
| 1781 | int hash_lookup P_ ((struct Lisp_Hash_Table *, Lisp_Object, unsigned *)); | 1782 | int hash_lookup P_ ((struct Lisp_Hash_Table *, Lisp_Object, unsigned *)); |
| 1782 | void hash_put P_ ((struct Lisp_Hash_Table *, Lisp_Object, Lisp_Object, | 1783 | void hash_put P_ ((struct Lisp_Hash_Table *, Lisp_Object, Lisp_Object, |
| 1783 | unsigned)); | 1784 | unsigned)); |
| @@ -1786,6 +1787,7 @@ void hash_clear P_ ((struct Lisp_Hash_Table *)); | |||
| 1786 | void remove_hash_entry P_ ((struct Lisp_Hash_Table *, int)); | 1787 | void remove_hash_entry P_ ((struct Lisp_Hash_Table *, int)); |
| 1787 | EXFUN (Fsxhash, 1); | 1788 | EXFUN (Fsxhash, 1); |
| 1788 | EXFUN (Fmake_hash_table, MANY); | 1789 | EXFUN (Fmake_hash_table, MANY); |
| 1790 | EXFUN (Fcopy_hash_table, 1); | ||
| 1789 | EXFUN (Fhash_table_count, 1); | 1791 | EXFUN (Fhash_table_count, 1); |
| 1790 | EXFUN (Fhash_table_rehash_size, 1); | 1792 | EXFUN (Fhash_table_rehash_size, 1); |
| 1791 | EXFUN (Fhash_table_rehash_threshold, 1); | 1793 | EXFUN (Fhash_table_rehash_threshold, 1); |