diff options
Diffstat (limited to 'libguile/eq.c')
-rw-r--r-- | libguile/eq.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libguile/eq.c b/libguile/eq.c index 5b144beef..67abdc96e 100644 --- a/libguile/eq.c +++ b/libguile/eq.c @@ -61,7 +61,7 @@ real_eqv (double x, double y) return !memcmp (&x, &y, sizeof(double)); } -SCM_DEFINE1 (scm_eqv_p, "eqv?", scm_tc7_rpsubr, +SCM_PRIMITIVE_GENERIC_1 (scm_eqv_p, "eqv?", scm_tc7_rpsubr, (SCM x, SCM y), "The @code{eqv?} procedure defines a useful equivalence relation on objects.\n" "Briefly, it returns @code{#t} if @var{x} and @var{y} should normally be\n" @@ -108,7 +108,10 @@ SCM_DEFINE1 (scm_eqv_p, "eqv?", scm_tc7_rpsubr, SCM_COMPLEX_IMAG (y))); } } - return SCM_BOOL_F; + if (SCM_UNPACK (g_scm_eqv_p)) + return scm_call_generic_2 (g_scm_eqv_p, x, y); + else + return SCM_BOOL_F; } #undef FUNC_NAME |