Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Allow :x(*) in subst.
  • Loading branch information
colomon committed Dec 21, 2011
1 parent 7585370 commit c184ec8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/CORE.setting
Expand Up @@ -426,8 +426,8 @@ my class Cool {
$nth := [ @$nth ] if defined $nth;
my $to = 0;
my $changes = 0;
my $limctr = $global ?? Inf !! defined($x) ??
$x.niecza_quantifier_max !! 1;
my $limctr = ($global || defined($x) && $x ~~ Whatever) ?? Inf
!! defined($x) ?? $x.niecza_quantifier_max !! 1;
my @out;
my $index = 0;
while $i < chars($str) && $limctr {
Expand Down

0 comments on commit c184ec8

Please sign in to comment.