1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-08 22:50:27 +02:00

(scm_make_subr_with_generic): Add missing last argument

in call to scm_c_define_gsubr_with_generic.  Thanks to Ariel Rios.
This commit is contained in:
Marius Vollmer 2001-05-21 12:27:08 +00:00
parent a7a59ea9d0
commit aac7e26056

View file

@ -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_make_subr_with_generic' is deprecated. Use "
"`scm_c_define_subr_with_generic' instead."); "`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 */ #endif /* !SCM_DEBUG_DEPRECATION */