guile-cvs
[Top][All Lists]
Advanced

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

guile/guile-scsh ChangeLog USAGE rx/re-low.scm ...


From: Gary Houston
Subject: guile/guile-scsh ChangeLog USAGE rx/re-low.scm ...
Date: Tue, 29 May 2001 13:50:47 -0700

CVSROOT:        /cvs
Module name:    guile
Changes by:     Gary Houston <address@hidden>   01/05/29 13:50:47

Modified files:
        guile-scsh     : ChangeLog USAGE 
        guile-scsh/rx  : re-low.scm re-subst.scm 

Log message:
        * rx/re-subst.scm: export regexp-substitute-global.  otherwise
        the version from (ice-9 regex) is used, but can't handle SREs.
        thanks to Paul Emsley for pointing out that
        regexp-substitute/global didn't work.
        
        * rx/re-low.scm: export regexp-match:start, regexp-match:end,
        regexp-match:string since they are used in re-subst.scm.  This
        fixes regexp-substitute.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-scsh/ChangeLog.diff?cvsroot=OldCVS&tr1=1.56&tr2=1.57&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-scsh/USAGE.diff?cvsroot=OldCVS&tr1=1.11&tr2=1.12&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-scsh/rx/re-low.scm.diff?cvsroot=OldCVS&tr1=1.3&tr2=1.4&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-scsh/rx/re-subst.scm.diff?cvsroot=OldCVS&tr1=1.3&tr2=1.4&r1=text&r2=text

Patches:
Index: guile/guile-scsh/ChangeLog
diff -u guile/guile-scsh/ChangeLog:1.56 guile/guile-scsh/ChangeLog:1.57
--- guile/guile-scsh/ChangeLog:1.56     Mon May 28 15:35:08 2001
+++ guile/guile-scsh/ChangeLog  Tue May 29 13:50:46 2001
@@ -1,3 +1,14 @@
+2001-05-29  Gary Houston  <address@hidden>
+
+       * rx/re-subst.scm: export regexp-substitute-global.  otherwise
+       the version from (ice-9 regex) is used, but can't handle SREs.
+       thanks to Paul Emsley for pointing out that
+       regexp-substitute/global didn't work.
+
+       * rx/re-low.scm: export regexp-match:start, regexp-match:end,
+       regexp-match:string since they are used in re-subst.scm.  This
+       fixes regexp-substitute.
+
 2001-05-28  Gary Houston  <address@hidden>
 
        * filesys.scm (create-directory, create-fifo, create-hard-link,
Index: guile/guile-scsh/USAGE
diff -u guile/guile-scsh/USAGE:1.11 guile/guile-scsh/USAGE:1.12
--- guile/guile-scsh/USAGE:1.11 Thu Jan 25 13:50:54 2001
+++ guile/guile-scsh/USAGE      Tue May 29 13:50:46 2001
@@ -141,7 +141,8 @@
 (->regexp)
 
 (scsh rx re-subst)
-(regexp-substitute)
+;; these replace definitions from (ice-9 regex).
+(regexp-substitute regexp-substitute/global)
 
 (scsh rx re-fold)
 (regexp-fold regexp-fold-right regexp-for-each)
Index: guile/guile-scsh/rx/re-low.scm
diff -u guile/guile-scsh/rx/re-low.scm:1.3 guile/guile-scsh/rx/re-low.scm:1.4
--- guile/guile-scsh/rx/re-low.scm:1.3  Sun Oct 29 11:53:23 2000
+++ guile/guile-scsh/rx/re-low.scm      Tue May 29 13:50:46 2001
@@ -9,6 +9,7 @@
   :use-module (scsh utilities)
 )
 (export match:start match:end match:substring)
+(export regexp-match:start regexp-match:end regexp-match:string)
 (export new-cre cre-search cre-search? cre:string cre:tvec)
 
 (foreign-source
Index: guile/guile-scsh/rx/re-subst.scm
diff -u guile/guile-scsh/rx/re-subst.scm:1.3 
guile/guile-scsh/rx/re-subst.scm:1.4
--- guile/guile-scsh/rx/re-subst.scm:1.3        Sat Dec  2 13:01:40 2000
+++ guile/guile-scsh/rx/re-subst.scm    Tue May 29 13:50:46 2001
@@ -17,7 +17,7 @@
   :use-module (scsh rx re-low)
   :use-module (scsh rx re-high)
 )
-(export regexp-substitute)
+(export regexp-substitute regexp-substitute/global)
 
 (define (regexp-substitute port match . items)
   (let* ((str (regexp-match:string match))



reply via email to

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