[[project @ 2001-05-29 20:50:46 by ghouston] ghouston**20010529205046 Ignore-this: c51db0b91ba6f213ca22debf1e6f617d * 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. ] hunk ./ChangeLog 1 +2001-05-29 Gary Houston + + * 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. + hunk ./USAGE 144 -(regexp-substitute) +;; these replace definitions from (ice-9 regex). +(regexp-substitute regexp-substitute/global) hunk ./rx/re-low.scm 12 +(export regexp-match:start regexp-match:end regexp-match:string) hunk ./rx/re-subst.scm 20 -(export regexp-substitute) +(export regexp-substitute regexp-substitute/global)