This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2a28b79
)
avoid warnings due to lack of forward declarations
author
Gurusamy Sarathy
<gsar@cpan.org>
Sat, 22 Jan 2000 12:07:23 +0000
(12:07 +0000)
committer
Gurusamy Sarathy
<gsar@cpan.org>
Sat, 22 Jan 2000 12:07:23 +0000
(12:07 +0000)
p4raw-id: //depot/perl@4841
lib/Pod/Html.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/Pod/Html.pm
b/lib/Pod/Html.pm
index
1cb5267
..
6f3d056
100644
(file)
--- a/
lib/Pod/Html.pm
+++ b/
lib/Pod/Html.pm
@@
-1379,6
+1379,9
@@
sub process_puretext {
# there may be pod commands embedded within the text so those must be
# converted to html commands.
#
+
+sub process_text1($$;$);
+
sub process_text {
return if $ignore;
my( $tref ) = @_;
@@
-1881,6
+1884,8
@@
$E2c{gt} = '>';
$E2c{sol} = '/';
$E2c{verbar} = '|';
+sub depod1($;$);
+
sub depod($){
my $string;
if( ref( $_[0] ) ){