Mercurial > emacs
changeset 25366:78de9d041747
Add prototype for copy_hash_table and Fcopy_hash_table.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Sun, 22 Aug 1999 20:47:17 +0000 |
parents | f32071216123 |
children | 823e14641544 |
files | src/lisp.h |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/lisp.h Sun Aug 22 20:47:15 1999 +0000 +++ b/src/lisp.h Sun Aug 22 20:47:17 1999 +0000 @@ -1778,6 +1778,7 @@ 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 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);