guile-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

guile/guile-scsh AUTHORS INCOMPAT README THANKS...


From: Gary Houston
Subject: guile/guile-scsh AUTHORS INCOMPAT README THANKS...
Date: Thu, 25 Jan 2001 13:50:55 -0800

CVSROOT:        /cvs
Module name:    guile
Changes by:     Gary Houston <address@hidden>   01/01/25 13:50:54

Modified files:
        guile-scsh     : AUTHORS INCOMPAT README THANKS USAGE 
                         define-foreign-syntax.scm rw.scm 

Log message:
        

CVSWeb URLs:
http://subversions.gnu.org/cgi-bin/cvsweb/guile/guile-scsh/AUTHORS.diff?r1=1.1&r2=1.2
http://subversions.gnu.org/cgi-bin/cvsweb/guile/guile-scsh/INCOMPAT.diff?r1=1.20&r2=1.21
http://subversions.gnu.org/cgi-bin/cvsweb/guile/guile-scsh/README.diff?r1=1.13&r2=1.14
http://subversions.gnu.org/cgi-bin/cvsweb/guile/guile-scsh/THANKS.diff?r1=1.4&r2=1.5
http://subversions.gnu.org/cgi-bin/cvsweb/guile/guile-scsh/USAGE.diff?r1=1.10&r2=1.11
http://subversions.gnu.org/cgi-bin/cvsweb/guile/guile-scsh/define-foreign-syntax.scm.diff?r1=1.1&r2=1.2
http://subversions.gnu.org/cgi-bin/cvsweb/guile/guile-scsh/rw.scm.diff?r1=1.8&r2=1.9

Patches:
Index: guile/guile-scsh/AUTHORS
diff -u guile/guile-scsh/AUTHORS:1.1 guile/guile-scsh/AUTHORS:1.2
--- guile/guile-scsh/AUTHORS:1.1        Mon Nov 27 15:59:16 2000
+++ guile/guile-scsh/AUTHORS    Thu Jan 25 13:50:54 2001
@@ -0,0 +1,2 @@
+scsh: Olin Shivers and Brian D. Carlstrom
+guile-scsh: Gary Houston
Index: guile/guile-scsh/INCOMPAT
diff -u guile/guile-scsh/INCOMPAT:1.20 guile/guile-scsh/INCOMPAT:1.21
--- guile/guile-scsh/INCOMPAT:1.20      Wed Dec  6 15:10:39 2000
+++ guile/guile-scsh/INCOMPAT   Thu Jan 25 13:50:54 2001
@@ -1,6 +1,8 @@
 Bugs:
 ====
 
+write-string/partial will block until all data is written.
+
 Incompatibilities with the original scsh:
 ========================================
 
Index: guile/guile-scsh/README
diff -u guile/guile-scsh/README:1.13 guile/guile-scsh/README:1.14
--- guile/guile-scsh/README:1.13        Wed Jan 24 14:30:51 2001
+++ guile/guile-scsh/README     Thu Jan 25 13:50:54 2001
@@ -8,10 +8,11 @@
 
 This version of guile-scsh requires:
 
-1) guile-core dated 25 January 2001 or later for best results.  Version 1.4
-is too old.
+1) guile-core.  For best results, check it out of CVS at the same time
+as guile-scsh.  Version 1.4 is too old.
 
 2) The guilerxspencer module, available from http://arglist.com/guile/
+(although some scsh modules can still be used if it's not installed.)
 
 Please send bug reports to:
 
@@ -22,12 +23,12 @@
 ./configure
 make install
 
-The configure script will attempt to install guile-scsh in the Guile
-site directory, as reported by guile-config in the current PATH.
-Supplying a prefix argument to configure doesn't have any effect.
+The configure script will attempt to locate the Guile site directory,
+as reported by guile-config in the current PATH.  Supplying a prefix
+argument to configure doesn't have any effect.
 
 Alternatively it's sufficient to rename (or link) the main guile-scsh
-directory to "scsh" and place it somewhere in the guile load path (type
+directory to "scsh" and place it somewhere in the Guile load path (type
 %load-path in an interactive Guile session to see the current
 setting).
 
Index: guile/guile-scsh/THANKS
diff -u guile/guile-scsh/THANKS:1.4 guile/guile-scsh/THANKS:1.5
--- guile/guile-scsh/THANKS:1.4 Mon Sep  4 11:37:13 2000
+++ guile/guile-scsh/THANKS     Thu Jan 25 13:50:54 2001
@@ -1,7 +1,6 @@
-The Guile SCSH port is the work of Gary Houston, as well as the Guile
-core system call support upon which SCSH rests.  Russ McManus took
-over from Gary in the summer of 1998.
+Thanks to:
 
-Bug reports and fixes from:
-
+Jim Blandy
+Mikael Djurfeldt
 David Lutterkort
+Russ McManus
Index: guile/guile-scsh/USAGE
diff -u guile/guile-scsh/USAGE:1.10 guile/guile-scsh/USAGE:1.11
--- guile/guile-scsh/USAGE:1.10 Wed Jan 24 14:30:51 2001
+++ guile/guile-scsh/USAGE      Thu Jan 25 13:50:54 2001
@@ -34,6 +34,9 @@
 the scsh file layouts relatively intact, to simplify ungrading to
 newer versions of scsh.
 
+FIXME: some facilities from scsh are available directly in guile-core.
+They should probably be listed here.
+
 This list was generated with help from the make-module-list script.
 
 (scsh alt-syntax)
@@ -107,7 +110,7 @@
 ()
 
 (scsh rw)
-(bogus-substring-spec? read-string/partial read-string! read-string 
write-string write-string/partial)
+(bogus-substring-spec? read-string/partial read-string! read-string 
write-string write-string/partial read-string!/partial)
 
 (scsh rx re-low)
 (match:start match:end match:substring new-cre cre-search cre-search? 
cre:string cre:tvec)
Index: guile/guile-scsh/define-foreign-syntax.scm
diff -u guile/guile-scsh/define-foreign-syntax.scm:1.1 
guile/guile-scsh/define-foreign-syntax.scm:1.2
--- guile/guile-scsh/define-foreign-syntax.scm:1.1      Sun Oct 29 11:53:23 2000
+++ guile/guile-scsh/define-foreign-syntax.scm  Thu Jan 25 13:50:54 2001
@@ -1,6 +1,5 @@
 (define-module (scsh define-foreign-syntax))
 (export-syntax foreign-source define-foreign)
 
-;; used in network redelim rx/re-low, sighandlers, syscalls, time.
 (define (foreign-source . args) #f)
 (defmacro define-foreign args #f)
Index: guile/guile-scsh/rw.scm
diff -u guile/guile-scsh/rw.scm:1.8 guile/guile-scsh/rw.scm:1.9
--- guile/guile-scsh/rw.scm:1.8 Sat Jan  6 14:49:07 2001
+++ guile/guile-scsh/rw.scm     Thu Jan 25 13:50:54 2001
@@ -9,7 +9,9 @@
 )
 (export bogus-substring-spec? read-string/partial
        read-string! read-string write-string write-string/partial)
-       
+
+;; from guile-core.
+(export read-string!/partial)
 
 (define (bogus-substring-spec? s start end)
   (or (< start 0)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]