Skip to content

Commit 232518c

Browse files
committed
Enable case-insensitive literal interpolation for systems w/o ICU.
1 parent 655049e commit 232518c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/QRegex/Cursor.nqp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ role NQPCursorRole {
208208
my $litlen := nqp::chars($str);
209209
$cur."!cursor_pass"($!pos + $litlen)
210210
if $i
211-
?? nqp::lc(nqp::substr($!target, $!pos, $litlen)) eq nqp::lc($str)
211+
?? nqp::lc(pir::trans_encoding__Ssi(nqp::substr($!target, $!pos, $l
212212
!! nqp::substr($!target, $!pos, $litlen) eq $str;
213213
$cur;
214214
}

0 commit comments

Comments
 (0)