1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-15 16:20:17 +02:00

* numbers.c (scm_logtest, scm_division): Reordered dispatch sequence.

* removed calls to deprecated scm_makdbl.
This commit is contained in:
Dirk Herrmann 2000-05-02 16:41:20 +00:00
parent 0607c1096c
commit f8de44c154
9 changed files with 297 additions and 262 deletions

View file

@ -561,7 +561,7 @@ SCM_DEFINE (scm_struct_ref, "struct-ref", 2, 0, 0,
break;
case 'd':
answer = scm_makdbl (*((double *)&(data[p])), 0.0);
answer = scm_make_real (*((double *)&(data[p])));
break;
#endif