1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-09 13:30:26 +02:00
This commit is contained in:
Mikael Djurfeldt 1999-09-20 22:25:10 +00:00
parent 3a8514f7e7
commit ff725a178e

View file

@ -426,7 +426,7 @@ extern SCM scm_call_generic_0 (SCM gf);
? scm_call_generic_0 ((gf)) \
: scm_wta ((arg), (char *) (pos), (subr)))
#define SCM_GASSERT0(cond, gf, arg, pos, subr) \
if (!(cond)) SCM_WTA_DISPATCH_1((gf), (arg), (pos), (subr))
if (!(cond)) SCM_WTA_DISPATCH_0((gf), (arg), (pos), (subr))
extern SCM scm_call_generic_1 (SCM gf, SCM a1);