bug-guile
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

GIT version: values writing


From: Hans Aberg
Subject: GIT version: values writing
Date: Tue, 18 Jan 2011 10:57:02 +0100

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 #<values 3 4> 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.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]