1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

Fix error in texi2pod intriduced with Perl 5.18

This commit is contained in:
Dave Reisner 2013-06-17 23:31:46 +05:30 committed by Giuseppe Scrivano
parent 9d35f87218
commit 7f43748544
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2013-06-17 Dave Reisner <dreisner@archlinux.org> (tiny change)
* texi2pod.pl: Fix formatting error that causes build to fail with
Perl 5.18
2013-06-17 Darshit Shah <darnir@gmail.com>
* wget.texi (POST): Explain the new redirection rules.

View File

@ -291,7 +291,7 @@ while(<$inf>) {
if (defined $1) {
my $thing = $1;
if ($ic =~ /\@asis/) {
$_ = "\n=item $thing\n";
$_ = "\n=item C<$thing>\n";
} else {
# Entity escapes prevent munging by the <> processing below.
$_ = "\n=item $ic\&LT;$thing\&GT;\n";