Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Small fix so that "say Parcel" works again... bigger fix coming soon.
  • Loading branch information
pmichaud committed Jun 14, 2011
1 parent cd08b78 commit 2b2ac48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/List.pm
Expand Up @@ -30,7 +30,7 @@ class List {
my $eager = Whatever.ACCEPTS($n);
while $!rest && ($eager || $i < $n) {
$x := pir::shift__PP($!rest);
if Parcel.ACCEPTS($x) {
if $x.defined && Parcel.ACCEPTS($x) {
pir::splice__vPPii(
$!rest, pir::getattribute__PPPs($x, Parcel, '$!storage'),
0, 0);
Expand Down

0 comments on commit 2b2ac48

Please sign in to comment.