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

*** empty log message ***

This commit is contained in:
Jim Blandy 1996-10-11 07:58:43 +00:00
parent d60cebe257
commit 1eaceb6160
4 changed files with 37 additions and 0 deletions

View file

@ -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.

View file

@ -1,3 +1,7 @@
Thu Oct 10 14:37:43 1996 Jim Blandy <jimb@floss.cyclic.com>
* Makefile.in (TAGS tags): Find the source files in $srcdir.
Wed Oct 9 19:37:14 1996 Jim Blandy <jimb@floss.cyclic.com>
* Makefile.in (DISTFILES): Add AUTHORS and aclocal.m4.

View file

@ -1,3 +1,10 @@
Thu Oct 10 22:27:32 1996 Jim Blandy <jimb@totoro.cyclic.com>
* 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 <ghouston@actrix.gen.nz>
* boot-9.scm (load): rewritten again.

View file

@ -1,3 +1,25 @@
Fri Oct 11 02:43:59 1996 Jim Blandy <jimb@totoro.cyclic.com>
* 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 <jimb@totoro.cyclic.com>
* 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 <jimb@floss.cyclic.com>
* async.c (scm_take_signal): Doc fixes.