]> sjero.net Git - wget/commitdiff
Fix error in texi2pod intriduced with Perl 5.18
authorDave Reisner <dreisner@archlinux.org>
Mon, 17 Jun 2013 18:01:46 +0000 (23:31 +0530)
committerGiuseppe Scrivano <gscrivano@gnu.org>
Sat, 22 Jun 2013 11:13:10 +0000 (13:13 +0200)
doc/ChangeLog
doc/texi2pod.pl

index 5e29c54775f16afc3d5e4bde516775555b396c1f..1a70e3cdeffd524dcfbeee933002ecaff4ecf0ab 100644 (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.
index 86c4b189ced76f1d27023cb1ec6fb056ae41ebfc..9db6de1758c24f44e1e6a79d3c7a7fcc3d488968 100755 (executable)
@@ -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";