diff --git a/AUTHORS b/AUTHORS index 10662c975..8cba90ace 100644 --- a/AUTHORS +++ b/AUTHORS @@ -21,3 +21,7 @@ of guile.texi. Mikael Djurfeldt: wrote debug.c, debug.h, options.c, options.h, srcprop.c, srcprop.h. Many changes throughout. + +David Keppel wrote the 'qt' threads package. Other contributors +include: Weihaw Chuang, Richard O'Keefe, Laurent Perron, John Polstra, +Shinji Suzuki, and Assar Westerlund. Uwe Reder wrote the HP-PA port. diff --git a/ChangeLog b/ChangeLog index b2e841de0..b45dd03a5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu Oct 10 14:37:43 1996 Jim Blandy + + * Makefile.in (TAGS tags): Find the source files in $srcdir. + Wed Oct 9 19:37:14 1996 Jim Blandy * Makefile.in (DISTFILES): Add AUTHORS and aclocal.m4. diff --git a/ice-9/ChangeLog b/ice-9/ChangeLog index 47c583b67..b5cfe6afd 100644 --- a/ice-9/ChangeLog +++ b/ice-9/ChangeLog @@ -1,3 +1,10 @@ +Thu Oct 10 22:27:32 1996 Jim Blandy + + * mapping.scm (hash-table-mapping): Explicitly request that + make-vector fill new vectors with '(); this will make it easier to + port Guile Scheme code to other Schemes. + * boot-9.scm (make-print-style, make-print-table): Same. + Sun Oct 6 03:54:59 1996 Gary Houston * boot-9.scm (load): rewritten again. diff --git a/libguile/ChangeLog b/libguile/ChangeLog index fee610010..a8997249d 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,25 @@ +Fri Oct 11 02:43:59 1996 Jim Blandy + + * eval.c (scm_nconc2last): Make sure that each element of lst + (which is a list of argument lists, except for the tail) is a + proper list, i.e., finite and terminated by '(). + +Thu Oct 10 21:09:13 1996 Jim Blandy + + * unif.c (scm_ra_set_contp): Localize `inc' declaration. + Clarifies flow. + + * struct.c (scm_make_struct, scm_make_vtable_vtable): Use the + symbolic name for the tag, scm_tc3_cons_gloc, instead of just + saying "1". + + * vectors.c (scm_make_vector): Fill vectors with the undefined + value, to help make Guile Scheme code more portable to other + Schemes. + + * symbols.c (scm_intern_obarray_soft, scm_sysintern): Doc fixes. + * symbols.h, tags.h: Doc fixes. + Wed Oct 9 19:39:29 1996 Jim Blandy * async.c (scm_take_signal): Doc fixes.