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

*** empty log message ***

This commit is contained in:
Marius Vollmer 2002-09-01 16:20:02 +00:00
parent 5527702a65
commit ffd0ef3b7f
2 changed files with 12 additions and 3 deletions

11
NEWS
View file

@ -1,5 +1,5 @@
Guile NEWS --- history of user-visible changes. -*- text -*-
Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
See the end for copying conditions.
Please send Guile bug reports to bug-guile@gnu.org.
@ -103,9 +103,14 @@ during evaluation, but prior to evaluation.
* Changes to the C interface
** New snarfer macro SCM_DEFINE_PUBLIC.
This is like SCM_DEFINE, but also calls scm_c_export for the defined
function in the init section.
** The SCM_VELTS macros now returns a read-only vector. For writing,
use the new macros SCM_WRITABLE_VELTS, SCM_SET_VECTOR_LENGTH. The use
of SCM_WRITABLE_VELTS is discouraged, though.
use the new macros SCM_WRITABLE_VELTS, SCM_VECTOR_SET. The use of
SCM_WRITABLE_VELTS is discouraged, though.
** Garbage collector rewrite.

View file

@ -1,3 +1,7 @@
2002-09-01 Marius Vollmer <mvo@zagadka.ping.de>
* snarf.h (SCM_DEFINE_PUBLIC): New.
2002-08-30 Marius Vollmer <mvo@zagadka.ping.de>
* socket.c (scm_addr_vector): Added size of address to arguments.