1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 03:30:27 +02:00

*** empty log message ***

This commit is contained in:
Jim Blandy 1996-11-20 21:06:20 +00:00
parent 84d219d43d
commit 3763761c89
3 changed files with 17 additions and 1 deletions

8
NEWS
View file

@ -68,7 +68,13 @@ Why does `#!' start a block comment terminated by `!#', instead of the
end of the line? That is the notation SCSH uses, and although we
don't yet support the other SCSH features that motivate that choice,
we would like to be backward-compatible with any existing Guile
scripts once we do.
scripts once we do. Furthermore, if the path to Guile on your system
is too long for your kernel, you can start the script with this
horrible hack:
#!/bin/sh
exec /really/long/path/to/guile -s "$0" ${1+"$@"}
!#
Note that some very old Unix systems don't support the `#!' syntax.

View file

@ -1,3 +1,8 @@
Wed Nov 20 14:45:27 1996 Jim Blandy <jimb@totoro.cyclic.com>
* slib.scm (slib-parent-dir): Use string-length, not length.
(Thanks to Bernard Urban.)
Sat Nov 2 20:00:42 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
* * boot-9.scm: The debugging evaluator and recording of positions

View file

@ -1,3 +1,8 @@
Tue Nov 19 22:43:31 1996 Jim Blandy <jimb@totoro.cyclic.com>
* gc.c (scm_igc, scm_gc_mark): Round up the size of the stack we
pass to scm_mark_locations. (Thanks to Aubrey Jaffer.)
Sun Nov 10 13:35:05 1996 Jim Blandy <jimb@floss.cyclic.com>
* gc.c (struct scm_heap_seg_data): Doc fixes.