Skip to content

Commit

Permalink
Match.perl: work around RT #64952
Browse files Browse the repository at this point in the history
  • Loading branch information
Moritz Lenz committed Apr 22, 2009
1 parent fd0a4d5 commit d0a5de5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/setting/Match.pm
Expand Up @@ -22,9 +22,10 @@ class Match is also {
if @(self) {
take $sp;
take "positional => [\n";
for @(self) {
# work around RT #64952
for ^self.list {
take "$sp ";
self!_perl_quant($_, $indent);
self!_perl_quant(self.[$_], $indent);
take ",\n";
}
take $sp;
Expand Down

0 comments on commit d0a5de5

Please sign in to comment.