diff options
author | Marius Vollmer <mvo@zagadka.de> | 2004-08-03 15:06:12 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2004-08-03 15:06:12 +0000 |
commit | d9a67fc441a066dbd352324b9b1a4a082d4ba818 (patch) | |
tree | 412f59d015fb7b090827ca886160462a416b9c5e /libguile/filesys.c | |
parent | 8672c728f0eac55444097c333fb4675eb6dde368 (diff) | |
download | guile-d9a67fc441a066dbd352324b9b1a4a082d4ba818.tar.gz |
(scm_make_real, scm_num2dbl, scm_float2num, scm_double2num):
Discouraged by moving to discouraged.h and discouraged.c.
Replaced all uses with scm_from_double.
(scm_num2float, scm_num2double): Discouraged by moving prototype
to discouraged.h and rewriting in terms of scm_to_double.
Replaced all uses with scm_to_double.
Diffstat (limited to 'libguile/filesys.c')
-rw-r--r-- | libguile/filesys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/filesys.c b/libguile/filesys.c index dd2bec1fa..be8199a9b 100644 --- a/libguile/filesys.c +++ b/libguile/filesys.c @@ -1217,7 +1217,7 @@ SCM_DEFINE (scm_select, "select", 3, 2, 0, } else { - double fl = scm_num2dbl (secs, FUNC_NAME); + double fl = scm_to_double (secs); if (!SCM_UNBNDP (usecs)) SCM_WRONG_TYPE_ARG (4, secs); |