From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Andy Wingo Newsgroups: gmane.lisp.guile.bugs Subject: Re: typo/bug in guile-bf08e10/doc/ref/api-control.texi Date: Sat, 04 Sep 2010 10:02:40 -0700 Message-ID: References: <1283550428.7803.20.camel@melody> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1283619636 23945 80.91.229.12 (4 Sep 2010 17:00:36 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 4 Sep 2010 17:00:36 +0000 (UTC) Cc: bug-guile@gnu.org To: ebuy Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Sat Sep 04 19:00:29 2010 Return-path: Envelope-to: guile-bugs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Orw6M-0000WR-LN for guile-bugs@m.gmane.org; Sat, 04 Sep 2010 19:00:26 +0200 Original-Received: from localhost ([127.0.0.1]:44740 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Orw6M-0003d7-3z for guile-bugs@m.gmane.org; Sat, 04 Sep 2010 13:00:26 -0400 Original-Received: from [140.186.70.92] (port=51079 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Orw6G-0003d2-Lp for bug-guile@gnu.org; Sat, 04 Sep 2010 13:00:21 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Orw6F-00057n-5t for bug-guile@gnu.org; Sat, 04 Sep 2010 13:00:20 -0400 Original-Received: from a-pb-sasl-quonix.pobox.com ([208.72.237.25]:38959 helo=sasl.smtp.pobox.com) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Orw6F-00051u-4F for bug-guile@gnu.org; Sat, 04 Sep 2010 13:00:19 -0400 Original-Received: from sasl.smtp.pobox.com (unknown [127.0.0.1]) by a-pb-sasl-quonix.pobox.com (Postfix) with ESMTP id 26A7ED3829; Sat, 4 Sep 2010 12:59:28 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; s=sasl; bh=JQDAKPdTHT9qvqblaUu9Kwb5ZX8=; b=anhSwf eT8Ca5iUZhUUxLhfP9K5igg3aCSRIVf2zyedz20Gy6zDPOvNMf+XEL/HWVDIIeE5 lWmoGZltxRK6URCRoLvoE70oNL7DNaV9zM8vxIWdXrfHwi8bNpZvmFZAWyAosemR lp8K6O6qq96g5gaR8g86m8t8RvbuL3+/sZp60= DomainKey-Signature: a=rsa-sha1; c=nofws; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; q=dns; s=sasl; b=d7X3rwwHglMmgBk3DoXx0UhDDDaCTT45 gnh8yIp9Zvc7jRi3DPrRlZJ38XlEEh3YcWeC0KINcwznPFBg7Gg00pVnDP6SAknF +QntMs1gnm/WsUde0VJe9L6OtZOWggqqaY5pLtXm2xC/coHdiINaLS47fq7Y81Ix W4RCQcnOyxg= Original-Received: from a-pb-sasl-quonix. (unknown [127.0.0.1]) by a-pb-sasl-quonix.pobox.com (Postfix) with ESMTP id 04FC0D3828; Sat, 4 Sep 2010 12:59:27 -0400 (EDT) Original-Received: from unquote.localdomain (unknown [75.16.63.82]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by a-pb-sasl-quonix.pobox.com (Postfix) with ESMTPSA id 8A32ED3827; Sat, 4 Sep 2010 12:59:25 -0400 (EDT) In-Reply-To: <1283550428.7803.20.camel@melody> (ebuy's message of "Fri, 03 Sep 2010 23:47:08 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) X-Pobox-Relay-ID: C6AD30C2-B845-11DF-A1D5-030CEE7EF46B-02397024!a-pb-sasl-quonix.pobox.com X-detected-operating-system: by eggs.gnu.org: Solaris 10 (beta) X-BeenThere: bug-guile@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GUILE, GNU's Ubiquitous Extension Language" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Errors-To: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.bugs:4758 Archived-At: Hi, On Fri 03 Sep 2010 14:47, ebuy writes: > consider the order "(PROC CONT)" in the documentation of the procedure > > "call-with-current-continuation" > > Shouldn't that be transposed? "(CONT PROC)" ? Nope! The point is to reify the continuation as a *value*; thus it is passed as a value to the procedure. (call/cc foo) = (foo CONT) Have fun with Guile, Andy -- http://wingolog.org/