1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

*** empty log message ***

This commit is contained in:
Rob Browning 2004-06-20 17:24:42 +00:00
parent 6b513f4643
commit f5d54eb740
2 changed files with 15 additions and 0 deletions

9
NEWS
View file

@ -118,6 +118,11 @@ while the scripting code runs single-threadedly.
This is an implementation of SRFI-26.
** New module (srfi srfi-31)
This is an implementation of SRFI-31 which provides a special form
`rec' for recursive evaluation.
** Guile now includes its own version of libltdl.
We now use a modified version of libltdl that allows us to make
@ -577,6 +582,10 @@ order described by the SRFI-1 specification
list-copy now accepts improper lists, per the specification.
** SRFI-4 fixes
Larger values in 64-bit vectors should print correctly now.
** SRFI-19 fixes
date-week-number now correctly respects the requested day of week

View file

@ -1,5 +1,11 @@
2004-06-20 Rob Browning <rlb@defaultvalue.org>
* srfi-4.c (uvec_print): rewrite using a union to make more
compact, and use static print_uint64 and print_int64 to print
64-bit elements.
(print_int64): new static function (temporary fix).
(print_uint64): new static function (temporary fix).
* Makefile.am (srfi_DATA): add srfi-31.scm.
* srfi-31.scm: new file.