projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
813be30
)
fix bug in processing L<> tags (from j.vavruska@post.cz)
Gurusamy Sarathy [Sun, 5 Dec 1999 00:33:34 +0000 (
00:33
+0000)]
p4raw-id: //depot/perl@4648
lib/Pod/Html.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/Pod/Html.pm
b/lib/Pod/Html.pm
index
e9c640c
..
15757ec
100644
(file)
--- 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