From 51fdb325b0472e9eb27bf5280f4aaa4c84c2330f Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Thu, 29 Jul 2004 15:49:04 +0000 Subject: [PATCH] *** empty log message *** --- ChangeLog | 3 ++- libguile/ChangeLog | 13 +++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0f8459ef0..2df2158da 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/libguile/ChangeLog b/libguile/ChangeLog index e52f62699..cabd3cf84 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,5 +1,18 @@ 2004-07-29 Marius Vollmer + * 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.