From aac7e260566febc0ee146661913d94c6b114885c Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Mon, 21 May 2001 12:27:08 +0000 Subject: [PATCH] (scm_make_subr_with_generic): Add missing last argument in call to scm_c_define_gsubr_with_generic. Thanks to Ariel Rios. --- libguile/procs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/procs.c b/libguile/procs.c index 66989d5e8..735a76c26 100644 --- a/libguile/procs.c +++ b/libguile/procs.c @@ -434,7 +434,7 @@ scm_make_subr_with_generic (const char *name, int type, SCM (*fcn) (), SCM *gf) ("`scm_make_subr_with_generic' is deprecated. Use " "`scm_c_define_subr_with_generic' instead."); - return scm_c_define_subr_with_generic (name, type, fcn); + return scm_c_define_subr_with_generic (name, type, fcn, gf); } #endif /* !SCM_DEBUG_DEPRECATION */