From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Bill Schottstaedt" Newsgroups: gmane.lisp.guile.bugs Subject: call/cc oddness Date: Thu, 17 Sep 2009 07:25:03 -0700 Message-ID: <20090917142337.M25099@ccrma.Stanford.EDU> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 X-Trace: ger.gmane.org 1253197568 1838 80.91.229.12 (17 Sep 2009 14:26:08 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 17 Sep 2009 14:26:08 +0000 (UTC) To: bug-guile@gnu.org Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Thu Sep 17 16:26:01 2009 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.50) id 1MoHvm-00066r-BL for guile-bugs@m.gmane.org; Thu, 17 Sep 2009 16:25:54 +0200 Original-Received: from localhost ([127.0.0.1]:45746 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MoHvl-0004Kb-CE for guile-bugs@m.gmane.org; Thu, 17 Sep 2009 10:25:53 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MoHv5-000431-S1 for bug-guile@gnu.org; Thu, 17 Sep 2009 10:25:12 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MoHv1-00041V-SI for bug-guile@gnu.org; Thu, 17 Sep 2009 10:25:11 -0400 Original-Received: from [199.232.76.173] (port=42700 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MoHv1-00041G-J8 for bug-guile@gnu.org; Thu, 17 Sep 2009 10:25:07 -0400 Original-Received: from smtp5.stanford.edu ([171.67.219.85]:58108 helo=smtp.stanford.edu) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MoHv1-0006by-7i for bug-guile@gnu.org; Thu, 17 Sep 2009 10:25:07 -0400 Original-Received: from smtp.stanford.edu (localhost.localdomain [127.0.0.1]) by localhost (Postfix) with SMTP id D802118FBB4 for ; Thu, 17 Sep 2009 07:25:04 -0700 (PDT) Original-Received: from cm-mail.stanford.edu (cm-mail.Stanford.EDU [171.64.197.135]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.stanford.edu (Postfix) with ESMTPS id 8E5CB18FBAD for ; Thu, 17 Sep 2009 07:25:04 -0700 (PDT) Original-Received: from ccrma.Stanford.EDU (localhost.localdomain [127.0.0.1]) by cm-mail.stanford.edu (8.13.8/8.13.8) with ESMTP id n8HEP3oF000974 for ; Thu, 17 Sep 2009 07:25:03 -0700 X-Mailer: OpenWebMail 2.53 X-OriginatingIP: 71.198.184.220 (bil) X-Virus-Scanned: ClamAV 0.94/9812/Wed Sep 16 22:56:17 2009 on cm-mail.stanford.edu X-Virus-Status: Clean X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) 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:4320 Archived-At: Is this a bug? scheme@(guile-user)> (call/cc (lambda (a . b) (a 1))) 1 scheme@(guile-user)> (call/cc (lambda arg ((car arg) 1))) 1 scheme@(guile-user)> (call/cc (lambda (a b) (a 1))) ERROR: Wrong number of arguments to # r5rs.html and r6rs.html say "Proc must be a procedure of one argument" -- perhaps ambiguous?