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: GIT version: values writing Date: Tue, 18 Jan 2011 10:57:02 +0100 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (Apple Message framework v936) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1295344649 10247 80.91.229.12 (18 Jan 2011 09:57:29 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 18 Jan 2011 09:57:29 +0000 (UTC) To: bug-guile@gnu.org Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Tue Jan 18 10:57:24 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 1Pf8JV-0003Yg-GX for guile-bugs@m.gmane.org; Tue, 18 Jan 2011 10:57:21 +0100 Original-Received: from localhost ([127.0.0.1]:56139 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pf8JU-00043V-Mb for guile-bugs@m.gmane.org; Tue, 18 Jan 2011 04:57:20 -0500 Original-Received: from [140.186.70.92] (port=58197 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pf8JJ-00042m-8X for bug-guile@gnu.org; Tue, 18 Jan 2011 04:57:12 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Pf8JF-0000bx-Ez for bug-guile@gnu.org; Tue, 18 Jan 2011 04:57:09 -0500 Original-Received: from smtp-out21.han.skanova.net ([195.67.226.208]:48857) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Pf8JF-0000as-7w for bug-guile@gnu.org; Tue, 18 Jan 2011 04:57:05 -0500 Original-Received: from h131n2-fre-d2.ias.bredband.telia.com (78.72.157.131) by smtp-out21.han.skanova.net (8.5.133) (authenticated as u26619196) id 4D07517100AD8600 for bug-guile@gnu.org; Tue, 18 Jan 2011 10:57:02 +0100 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:4974 Archived-At: There seems to be a bug in GIT version when writing the 'values' data type. (list 2 (values 3 4) 5) $1 = (2 3 5) with the value 4 lost In guile-1.8.8, it would write (2 # 5) The top level write out all values: (values 3 4) $2 = 3 $3 = 4 The values correspond to tuples, so they might be written out as ordinary tuples, though that is perhaps not Scheme style.