]> git.pld-linux.org Git - packages/wget.git/blob - wget-pod.patch
- fixed problems with texinfo 5 and pod from perl 5.18
[packages/wget.git] / wget-pod.patch
1 --- wget-1.14/doc/texi2pod.pl.orig      2013-12-06 20:29:19.785649931 +0100
2 +++ wget-1.14/doc/texi2pod.pl   2013-12-06 20:32:09.288982037 +0100
3 @@ -291,7 +291,11 @@
4         if (defined $1) {
5              my $thing = $1;
6              if ($ic =~ /\@asis/) {
7 -                $_ = "\n=item $thing\n";
8 +               if ($thing =~ /^[0-9]+$/) {
9 +                   $_ = "\n=item C\<$thing\>\n";
10 +               } else {
11 +                   $_ = "\n=item $thing\n";
12 +               }
13              } else {
14                  # Entity escapes prevent munging by the <> processing below.
15                  $_ = "\n=item $ic\&LT;$thing\&GT;\n";
This page took 0.071893 seconds and 3 git commands to generate.