1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

* hashtab.h (scm_hashx_remove_x): Renamed `delete' parameter to

`del', for the sake of C++ compilers.  (Patch applied by JimB.)
This commit is contained in:
Jim Blandy 1996-10-21 23:53:40 +00:00
parent c7c03b9f87
commit 07f779e033

View file

@ -78,7 +78,7 @@ extern SCM scm_hashx_get_handle SCM_P ((SCM hash, SCM assoc, SCM table, SCM obj)
extern SCM scm_hashx_create_handle_x SCM_P ((SCM hash, SCM assoc, SCM table, SCM obj, SCM init));
extern SCM scm_hashx_ref SCM_P ((SCM hash, SCM assoc, SCM table, SCM obj, SCM dflt));
extern SCM scm_hashx_set_x SCM_P ((SCM hash, SCM assoc, SCM table, SCM obj, SCM val));
extern SCM scm_hashx_remove_x SCM_P ((SCM hash, SCM assoc, SCM delete, SCM table, SCM obj));
extern SCM scm_hashx_remove_x SCM_P ((SCM hash, SCM assoc, SCM del, SCM table, SCM obj));
extern void scm_init_hashtab SCM_P ((void));
#endif /* HASHTABH */