diff options
author | Marc Green <marcgreen@cpan.org> | 2011-06-24 11:14:28 -0400 |
---|---|---|
committer | Marc Green <marcgreen@cpan.org> | 2011-10-31 13:26:41 -0400 |
commit | 1d7ed44a3073f21892eceff9e92a17e20ac0cdc3 (patch) | |
tree | 47435bceb38f745e9f370c5aad7df113062c548e /ext/Pod-Html/lib | |
parent | 18f1a6e3a6a2fe0c14e1602b6cc055b838df9af4 (diff) | |
download | perl-1d7ed44a3073f21892eceff9e92a17e20ac0cdc3.tar.gz |
Implement --recurse and update test cases
Diffstat (limited to 'ext/Pod-Html/lib')
-rw-r--r-- | ext/Pod-Html/lib/Pod/Html.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Pod-Html/lib/Pod/Html.pm b/ext/Pod-Html/lib/Pod/Html.pm index 552466b3d9..d4976119fd 100644 --- a/ext/Pod-Html/lib/Pod/Html.pm +++ b/ext/Pod-Html/lib/Pod/Html.pm @@ -270,7 +270,7 @@ sub pod2html { # - callback used to remove $Podroot from each file # - laborious to allow '.' in dirnames (e.g., /usr/share/perl/5.14.1) Pod::Simple::Search->new->inc(0)->verbose($Verbose)->laborious(1) - ->callback(\&_save_page)->survey(@Podpath); + ->callback(\&_save_page)->recurse($Recurse)->survey(@Podpath); # set options for the parser my $parser = Pod::Simple::XHTML::LocalPodLinks->new(); |