We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8234662 commit 18c56b3Copy full SHA for 18c56b3
lib/PDL/Doc.pm
@@ -682,7 +682,7 @@ sub scan {
682
my $n = 0;
683
$_->{File} = $file2, $n++ for values %{ $parser->{SYMHASH} };
684
for my $key (sort keys %{ $parser->{SYMHASH} }) {
685
- my $val = $hash->{$key};
+ my $val = $parser->{SYMHASH}{$key};
686
#set up the 3-layer hash/database structure: $hash->{funcname}->{PDL::SomeModule} = $val
687
if (defined($val->{Module})) {
688
$hash->{$key}{$val->{Module}} = $val;
@@ -745,6 +745,7 @@ sub scantree {
745
print "\t$n functions\n";
746
};
747
File::Find::find({
748
+ no_chdir => 1,
749
wanted => $sub,
750
preprocess => sub { sort @_ }
751
}, $dir);
0 commit comments