From 07f779e03369dccf96828bcfff5b6c004d6d779f Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Mon, 21 Oct 1996 23:53:40 +0000 Subject: [PATCH] * hashtab.h (scm_hashx_remove_x): Renamed `delete' parameter to `del', for the sake of C++ compilers. (Patch applied by JimB.) --- libguile/hashtab.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/hashtab.h b/libguile/hashtab.h index ff5eceaca..f53d25663 100644 --- a/libguile/hashtab.h +++ b/libguile/hashtab.h @@ -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 */