summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Blandy <jimb@red-bean.com>1996-11-20 21:06:20 +0000
committerJim Blandy <jimb@red-bean.com>1996-11-20 21:06:20 +0000
commit3763761c892de0a49339c567ea8ae2ca093c0289 (patch)
tree209e621fa9409a51295a692e1f7a01437cf31cc2
parent84d219d43d5514e1c07f0fab2d9b4b007c328084 (diff)
downloadguile-3763761c892de0a49339c567ea8ae2ca093c0289.tar.gz
*** empty log message ***
-rw-r--r--NEWS8
-rw-r--r--ice-9/ChangeLog5
-rw-r--r--libguile/ChangeLog5
3 files changed, 17 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 8b2707112..10d317f42 100644
--- a/NEWS
+++ b/NEWS
@@ -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.
diff --git a/ice-9/ChangeLog b/ice-9/ChangeLog
index 0487f92bf..d88f6c315 100644
--- a/ice-9/ChangeLog
+++ b/ice-9/ChangeLog
@@ -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
diff --git a/libguile/ChangeLog b/libguile/ChangeLog
index eade900f8..db380bdc2 100644
--- a/libguile/ChangeLog
+++ b/libguile/ChangeLog
@@ -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.