1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

*** empty log message ***

This commit is contained in:
Marius Vollmer 2004-07-29 15:49:04 +00:00
parent 4627df5a6b
commit 51fdb325b0
2 changed files with 15 additions and 1 deletions

View file

@ -2,7 +2,8 @@
* configure.in: Bugfix: logic in detecting ptrdiff_t was inverted;
assume ptrdiff_t is available when its size is non-zero, not when
it is zero. Do no longer define SCM_I_GSC_*_LIMITS macros.
it is zero. Do no longer define SCM_I_GSC_*_LIMITS macros. Check
for sizes of size_t and intmax_t.
2004-07-09 Marius Vollmer <mvo@zagadka.de>

View file

@ -1,5 +1,18 @@
2004-07-29 Marius Vollmer <marius.vollmer@uni-dortmund.de>
* numbers.h (scm_to_schar, scm_to_uchar, scm_to_char,
scm_to_short, scm_to_ushort, scm_to_int, scm_to_uint, scm_to_long,
scm_to_ulong, scm_to_long_long, scm_to_ulong_long, scm_to_intmax,
scm_to_uintmax, scm_to_size_t, scm_to_ssize_t scm_from_schar,
scm_from_uchar, scm_from_char, scm_from_short, scm_from_ushort,
scm_from_int, scm_from_uint, scm_from_long, scm_from_ulong,
scm_from_long_long, scm_from_ulong_long, scm_from_intmax,
scm_from_uintmax, scm_from_size_t, scm_from_ssize_t): No longer
defined in terms of scm_to_signed_integer, etc, but in terms of
scm_to_int8, etc.
* gen-scmconfig.c (SCM_SIZEOF_INTMAX, SCM_SIZEOF_SIZE_T): New.
* gen-scmconfig.h.in: Removed SCM_I_GSC_*_LIMITS macros, they are
no longer used.