From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Kevin Ryde Newsgroups: gmane.lisp.guile.devel Subject: doco srfi-13 string-replace Date: Sat, 24 May 2003 07:33:58 +1000 Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Message-ID: <874r3lny9l.fsf@zip.com.au> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1053725891 21567 80.91.224.249 (23 May 2003 21:38:11 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 23 May 2003 21:38:11 +0000 (UTC) Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Fri May 23 23:38:09 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19JKEr-0005bg-00 for ; Fri, 23 May 2003 23:38:09 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19JKFW-0007wC-Sc for guile-devel@m.gmane.org; Fri, 23 May 2003 17:38:50 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.20) id 19JKEp-0007nG-8S for guile-devel@gnu.org; Fri, 23 May 2003 17:38:07 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.20) id 19JKCY-0006AO-I5 for guile-devel@gnu.org; Fri, 23 May 2003 17:35:49 -0400 Original-Received: from snoopy.pacific.net.au ([61.8.0.36]) by monty-python.gnu.org with esmtp (Exim 4.20) id 19JKB5-0004t3-Bu for guile-devel@gnu.org; Fri, 23 May 2003 17:34:15 -0400 Original-Received: from sunny.pacific.net.au (sunny.pacific.net.au [203.2.228.40]) h4NLYDPB016279 for ; Sat, 24 May 2003 07:34:13 +1000 Original-Received: from wisma.pacific.net.au (wisma.pacific.net.au [210.23.129.72]) by sunny.pacific.net.au with ESMTP id h4NLYDQg026874 for ; Sat, 24 May 2003 07:34:13 +1000 (EST) Original-Received: from localhost (ppp126.dyn228.pacific.net.au [203.143.228.126]) by wisma.pacific.net.au (8.12.9/8.12.9) with ESMTP id h4NLYCYZ028080 for ; Sat, 24 May 2003 07:34:12 +1000 (EST) Original-Received: from gg by localhost with local (Exim 3.35 #1 (Debian)) id 19JKAo-0000ek-00; Sat, 24 May 2003 07:33:58 +1000 Original-To: guile-devel@gnu.org Mail-Copies-To: never User-Agent: Gnus/5.090019 (Oort Gnus v0.19) Emacs/21.2 (gnu/linux) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Developers list for Guile, the GNU extensibility library List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.lisp.guile.devel:2429 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:2429 --=-=-= FYI: * srfi-modules.texi (SRFI-13 Miscellaneous): In string-replace, start1 and end1 are not optional. I'll apply this change to the 1.6 branch too, since it's contrary to the spec and the code, though it's not really a big deal. --=-=-= Content-Disposition: attachment; filename=srfi-modules.texi.string-replace.diff --- srfi-modules.texi.~1.14.~ 2003-05-22 11:33:27.000000000 +1000 +++ srfi-modules.texi 2003-05-23 18:07:50.000000000 +1000 @@ -1799,7 +1799,7 @@ 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}. --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit _______________________________________________ Guile-devel mailing list Guile-devel@gnu.org http://mail.gnu.org/mailman/listinfo/guile-devel --=-=-=--