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: doc srfi-1 break versus while Date: Sat, 11 Oct 2003 08:20:26 +1000 Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Message-ID: <877k3c4tw5.fsf@zip.com.au> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: sea.gmane.org 1065824511 17621 80.91.224.253 (10 Oct 2003 22:21:51 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 10 Oct 2003 22:21:51 +0000 (UTC) Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Sat Oct 11 00:21:49 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1A85dt-0005hh-00 for ; Sat, 11 Oct 2003 00:21:49 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1A85dV-0008GN-LD for guile-devel@m.gmane.org; Fri, 10 Oct 2003 18:21:25 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1A85dH-0008Cw-OV for guile-devel@gnu.org; Fri, 10 Oct 2003 18:21:11 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1A85ck-0007vz-Ec for guile-devel@gnu.org; Fri, 10 Oct 2003 18:21:09 -0400 Original-Received: from [61.8.0.36] (helo=snoopy.pacific.net.au) by monty-python.gnu.org with esmtp (Exim 4.24) id 1A85cj-0007vp-AH for guile-devel@gnu.org; Fri, 10 Oct 2003 18:20:37 -0400 Original-Received: from mongrel.pacific.net.au (mongrel.pacific.net.au [61.8.0.107]) by snoopy.pacific.net.au (8.12.3/8.12.3/Debian-6.6) with ESMTP id h9AMKYYH007373 for ; Sat, 11 Oct 2003 08:20:34 +1000 Original-Received: from localhost (ppp83.dyn228.pacific.net.au [203.143.228.83]) by mongrel.pacific.net.au (8.12.3/8.12.3/Debian-6.6) with ESMTP id h9AMGvst026941 for ; Sat, 11 Oct 2003 08:16:58 +1000 Original-Received: from gg by localhost with local (Exim 3.35 #1 (Debian)) id 1A85cZ-0002nS-00; Sat, 11 Oct 2003 08:20:27 +1000 Original-To: guile-devel@gnu.org Mail-Copies-To: never User-Agent: Gnus/5.1003 (Gnus v5.10.3) Emacs/21.3 (gnu/linux) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Developers list for Guile, the GNU extensibility library List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.lisp.guile.devel:2863 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:2863 --=-=-= * srfi-modules.texi (SRFI-1 Searching): In break, note conflict with binding established by `while'. Note that the name `break' conflicts with the `break' binding established by `while' (*note while do::). Applications wanting to use `break' from within a `while' loop will need to make a new define under a different name. --=-=-= Content-Disposition: attachment; filename=srfi-modules.texi.break.diff --- srfi-modules.texi.~1.23.~ 1970-01-01 10:00:01.000000000 +1000 +++ srfi-modules.texi 2003-10-09 15:26:32.000000000 +1000 @@ -672,6 +672,11 @@ @code{span!} and @code{break!} are allowed, but not required to modify the structure of the input list @var{lst} in order to produce the result. + +Note that the name @code{break} conflicts with the @code{break} +binding established by @code{while} (@pxref{while do}). Applications +wanting to use @code{break} from within a @code{while} loop will need +to make a new define under a different name. @end deffn @deffn {Scheme Procedure} any pred lst1 lst2 @dots{} --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Guile-devel mailing list Guile-devel@gnu.org http://mail.gnu.org/mailman/listinfo/guile-devel --=-=-=--