Skip to content

Commit

Permalink
Fixed overlooked use of CORE without .c
Browse files Browse the repository at this point in the history
  • Loading branch information
vrurg committed Aug 24, 2019
1 parent c94f5db commit b9e7ad4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Perl6/World.nqp
Expand Up @@ -4819,7 +4819,7 @@ class Perl6::World is HLL::World {
if nqp::chars($rev) == 1 && nqp::existskey(nqp::getcomp('perl6').language_revisions,$rev) {
$no-outers := 1; # you don't see other COREs!
nqp::shift(@name);
$setting_name := 'CORE' ~ (nqp::iseq_s($rev, 'c') ?? '' !! ".$rev");
$setting_name := 'CORE' ~ '.' ~ $rev;
}
}
}
Expand Down

0 comments on commit b9e7ad4

Please sign in to comment.