diff options
author | Marius Vollmer <mvo@zagadka.de> | 2004-07-08 15:54:40 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2004-07-08 15:54:40 +0000 |
commit | 43240c9caf66f802ba50df685e3e8b44e38906a5 (patch) | |
tree | 22edf4f7959f914d0ae9c214e160dfdb68f0b050 | |
parent | d956fa6f91e2873fbf5db4e5ed1345f0958d05dd (diff) | |
download | guile-43240c9caf66f802ba50df685e3e8b44e38906a5.tar.gz |
*** empty log message ***
-rw-r--r-- | libguile/ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libguile/ChangeLog b/libguile/ChangeLog index b0ef8e47a..5aec17776 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,19 @@ +2004-07-08 Marius Vollmer <marius.vollmer@uni-dortmund.de> + + * numbers.c (scm_is_signed_integer, scm_is_unsigned_integer): + Rewritten using the same logic as scm_to_signed_integer and + scm_to_unsigned_integer, respectively, which is better(tm). Also, + use CHAR_BIT instead of hardcoding 8. + (LLONG_MIN, LLONG_MAX, ULLONG_MAX): Removed and used + SCM_I_LLONG_MIN etc. instead. + + * numbers.h (SCM_MAKINUM, SCM_I_MAKINUM): Renamed SCM_MAKINUM to + SCM_I_MAKINUM and changed all uses. + * deprecated.h, deprecated.c (SCM_MAKINUM): Newly deprecated. + + * gen-scmconfig.c: Instead of hard-coding the numbers, compute + them by assuming twos-complement. + 2004-07-07 Marius Vollmer <marius.vollmer@uni-dortmund.de> * gen-scmconfig.h.in: Added all the new SCM_I_GSC_*_LIMITS that |