Skip to content

Commit

Permalink
Fix deprecation inside CORE
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed May 16, 2014
1 parent 94bd372 commit f57749e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Str.pm
Expand Up @@ -537,7 +537,7 @@ my class Str does Stringy { # declared in BOOTSTRAP
multi method perl(Str:D:) {
my $result = '"';
#?if parrot
my $icu = $*VM<config><has_icu>;
my $icu = $*VM.config<has_icu>;
for ^self.chars -> $i {
my $ch = self.substr($i, 1);
$result ~= %esc{$ch}
Expand Down

0 comments on commit f57749e

Please sign in to comment.