diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-12-05 00:33:34 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-12-05 00:33:34 +0000 |
commit | 770bbf7fa6ce320a36c372f3f2c4e5c114f0c097 (patch) | |
tree | 3a1d8bfc5b4eeb24769be6037fbeb1d64214fc91 /lib | |
parent | 813be30db6de3ab429e520138c0dbca243892308 (diff) | |
download | perl-770bbf7fa6ce320a36c372f3f2c4e5c114f0c097.tar.gz |
fix bug in processing L<> tags (from j.vavruska@post.cz)
p4raw-id: //depot/perl@4648
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Pod/Html.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Pod/Html.pm b/lib/Pod/Html.pm index e9c640cf5d..15757ec80d 100644 --- a/lib/Pod/Html.pm +++ b/lib/Pod/Html.pm @@ -1487,7 +1487,7 @@ sub process_L { if (m,^(.*?)/"?(.*?)"?$,) { # yes ($page, $section) = ($1, $2); } else { # no - ($page, $section) = ($str, ""); + ($page, $section) = ($_, ""); } # check if we know that this is a section in this page |