mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
* eq.c (s_scm_eqv_p): scm_i_bigcomp -> scm_i_bigcmp.
This commit is contained in:
parent
a6be66ed1e
commit
cb32fdbf9b
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ SCM_DEFINE1 (scm_eqv_p, "eqv?", scm_tc7_rpsubr,
|
|||
if (SCM_NUMP (x))
|
||||
{
|
||||
if (SCM_BIGP (x)) {
|
||||
return SCM_BOOL (0 == scm_bigcomp (x, y));
|
||||
return SCM_BOOL (0 == scm_i_bigcmp (x, y));
|
||||
} else if (SCM_SLOPPY_REALP (x)) {
|
||||
return SCM_BOOL (real_eqv (SCM_REAL_VALUE (x), SCM_REAL_VALUE (y)));
|
||||
} else { /* complex */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue