Skip to content

Commit

Permalink
Empty <> quotes with only whitespace should return empty parcel. (RT …
Browse files Browse the repository at this point in the history
…#73772)
  • Loading branch information
pmichaud committed Jun 6, 2010
1 parent 06723b4 commit 841262f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Perl6/Actions.pm
Expand Up @@ -2494,7 +2494,7 @@ method quote_EXPR($/) {
}
else {
my @words := HLL::Grammar::split_words($/, $past.value);
if +@words > 1 {
if +@words != 1 {
$past := PAST::Op.new( :name('&infix:<,>'), :node($/) );
for @words { $past.push($_); }
$past := PAST::Stmts.new($past);
Expand Down

0 comments on commit 841262f

Please sign in to comment.