From 8e5549c6165b750315d5976c12a8eaf8d69a522f Mon Sep 17 00:00:00 2001 From: Stefan O'Rear Date: Tue, 20 Jul 2010 04:47:47 -0700 Subject: [PATCH] Fix lists interpolating backwards --- setting | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setting b/setting index 6b9f76a7..f42fed9a 100644 --- a/setting +++ b/setting @@ -492,8 +492,8 @@ my class List is Cool { # we can't push anything onto items because it might be # EMPTY if ! $v.value.^isa(EMPTY) { - $r.unshift($v.value); $r.unshift($v.next); + $r.unshift($v.value); } } else { $i.push($v);