From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Hans Aberg Newsgroups: gmane.lisp.guile.bugs Subject: Re: GIT version: values Date: Thu, 20 Jan 2011 18:10:22 +0100 Message-ID: References: <782A565D-19C6-4EA1-A4E6-ACD10464B3E5@telia.com> <87bp3bzjsi.fsf@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (Apple Message framework v936) Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1295543497 4037 80.91.229.12 (20 Jan 2011 17:11:37 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 20 Jan 2011 17:11:37 +0000 (UTC) Cc: bug-guile@gnu.org To: =?ISO-8859-1?Q?Ludovic_Court=E8s?= Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Thu Jan 20 18:11:33 2011 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 1Pfy2X-0004V6-UI for guile-bugs@m.gmane.org; Thu, 20 Jan 2011 18:11:32 +0100 Original-Received: from localhost ([127.0.0.1]:53509 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pfy2Q-00051w-FO for guile-bugs@m.gmane.org; Thu, 20 Jan 2011 12:11:11 -0500 Original-Received: from [140.186.70.92] (port=34396 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pfy1m-0004rB-Ng for bug-guile@gnu.org; Thu, 20 Jan 2011 12:10:32 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Pfy1h-0003Hk-OC for bug-guile@gnu.org; Thu, 20 Jan 2011 12:10:26 -0500 Original-Received: from smtp-out12.han.skanova.net ([195.67.226.212]:43441) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Pfy1h-0003HN-CB; Thu, 20 Jan 2011 12:10:25 -0500 Original-Received: from h131n2-fre-d2.ias.bredband.telia.com (78.72.157.131) by smtp-out12.han.skanova.net (8.5.133) (authenticated as u26619196) id 4D065C290098BDA7; Thu, 20 Jan 2011 18:10:23 +0100 In-Reply-To: <87bp3bzjsi.fsf@gnu.org> X-Mailer: Apple Mail (2.936) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. 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:4988 Archived-At: On 20 Jan 2011, at 16:17, Ludovic Court=E8s wrote: >> It seems it is not only 'values' writing, but the new behavior seems >> to be to strip trailing values quietly: >> (define a (values 2 3 4)) >> (call-with-values (lambda () a) (lambda x x)) >> in Guile 1.9.14.68-a7d8a computes to >> $1 =3D (2) >> >> By contrast, in guile-1.8.8, it computes to >> (2 3 4) > > This is the same problem as in your other message. Yes, I thought it was first a printing problem, struggling with code =20 that mysteriously was broken, before realizing that you merely dump =20 the other values. It is OK with R5RS, which says that the behavior is =20= undefined.