From 8c24f46e806f3875b6d3d200af3280903f83a111 Mon Sep 17 00:00:00 2001 From: Kevin Ryde Date: Fri, 23 May 2003 23:43:18 +0000 Subject: [PATCH] Revert this change: (SRFI-13 Miscellaneous): In string-replace, start1 and end1 are not optional. --- doc/ref/srfi-modules.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/ref/srfi-modules.texi b/doc/ref/srfi-modules.texi index c57a1f7de..bc5de490f 100644 --- a/doc/ref/srfi-modules.texi +++ b/doc/ref/srfi-modules.texi @@ -1799,7 +1799,7 @@ cannot copy a string on top of itself. another string and @code{string-tokenize} splits a string into a list of strings, breaking it up at a specified character. -@deffn {Scheme Procedure} string-replace s1 s2 start1 end1 [start2 end2] +@deffn {Scheme Procedure} string-replace s1 s2 [start1 end1 start2 end2] Return the string @var{s1}, but with the characters @var{start1} @dots{} @var{end1} replaced by the characters @var{start2} @dots{} @var{end2} from @var{s2}.