Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
eval to EVAL to fix p6doc
  • Loading branch information
stmuk committed Jul 26, 2014
1 parent 1e3415f commit a6270f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/p6doc
Expand Up @@ -70,7 +70,7 @@ multi sub MAIN() {
multi sub MAIN($docee) {
return MAIN($docee, :f) if defined $docee.index('.') ;
if 'index.data'.IO ~~ :e {
my %data = eval slurp 'index.data';
my %data = EVAL slurp 'index.data';
if %data{$docee} {
my $newdoc = %data{$docee}[0][0] ~ "." ~ %data{$docee}[0][1];
return MAIN($newdoc, :f);
Expand Down

0 comments on commit a6270f3

Please sign in to comment.