texi2pod.pl: Force .pod file to not be a numbered list.
authorUros Bizjak <uros@gcc.gnu.org>
Sat, 24 May 2014 06:38:31 +0000 (08:38 +0200)
committerUros Bizjak <uros@gcc.gnu.org>
Sat, 24 May 2014 06:38:31 +0000 (08:38 +0200)
* texi2pod.pl: Force .pod file to not be a numbered list.

From-SVN: r210889

contrib/ChangeLog
contrib/texi2pod.pl

index d0f62e57a0579710a03359e3ef4fe3f088c4bbf3..b2c6cabfba32c98366909671800367d76459020a 100644 (file)
@@ -1,3 +1,7 @@
+2014-05-24  Uros Bizjak  <ubizjak@gmail.com>
+
+       * texi2pod.pl: Force .pod file to not be a numbered list.
+
 2014-05-20  Richard Sandiford  <rdsandiford@googlemail.com>
 
        * dg-extract-results.py (parse_run): Handle warnings that are printed
@@ -90,7 +94,7 @@
 2013-08-03  Caroline Tice  <cmtice@google.com>
 
        * gcc_update: Add libvtv files.
-       
+
 2013-06-06  Brooks Moses  <bmoses@google.com>
 
        * testsuite-management/validate_failures.py: Fix handling of
 2012-08-24   Diego Novillo  <dnovillo@google.com>
 
        * testsuite-management/x86_64-unknown-linux-gnu.xfail: Update.
-       
+
 2012-08-14   Diego Novillo  <dnovillo@google.com>
 
        * testsuite-management/x86_64-unknown-linux-gnu.xfail: New.
 2009-08-18  H.J. Lu  <hongjiu.lu@intel.com>
 
        PR testsuite/40704
-       * test_summary: Filter out "\r". 
+       * test_summary: Filter out "\r".
 
 2009-06-02  Alexandre Oliva  <aoliva@redhat.com>
 
 2008-03-10  Janis Johnson  <janis187@us.ibm.com>
 
        * patch_tester.sh (initialization): Initialize svnpatch and stop.
-       (usage): Add -svnpath and -stop.        
+       (usage): Add -svnpath and -stop.
        (makedir): New.
        (argument handling): Process -stop and -svnpath.
        (setup code): Use makedir, error out if initial svn checkout fails.
 
        * texi2pod.pl: Handle @asis.
        (postprocess): Move @gccoptlist{} after all formatting commands.
-       
+
 2007-10-01  Alexandre Oliva  <aoliva@redhat.com>
 
        * compare-debug: Avoid spurious errors when .stripped files
 
 2005-10-28  Daniel Berlin  <dberlin@dberlin.org>
            Ben Elliston  <bje@au1.ibm.com>
-       
+
        * gcc_update: Update for svn.
        * newcvsroot: Ditto.
        * gcc_build: Ditto.
 
 2005-10-21  Mark Mitchell  <mark@codesourcery.com>
 
-       * texi2pod.pl: Substitue for @value even when part of @include. 
+       * texi2pod.pl: Substitue for @value even when part of @include.
 
 2005-10-21  Bob Wilson  <bob.wilson@acm.org>
 
index 5a4bbacdf5e3f5f7425829ea9a25920b65e9d35b..55b6ba75227996e25963c2f3c809dfb183ad923d 100755 (executable)
@@ -1,6 +1,6 @@
 #! /usr/bin/perl -w
 
-#   Copyright (C) 1999, 2000, 2001, 2003, 2010 Free Software Foundation, Inc.
+#   Copyright (C) 1999-2014 Free Software Foundation, Inc.
 
 # This file is part of GCC.
 
@@ -337,7 +337,7 @@ while(<$inf>) {
                 $_ = "\n=item $1\n";
             }
        } else {
-           $_ = "\n=item $ic\n";
+           $_ = "\n=item Z\&LT;\&GT;$ic\n";
            $ic =~ y/A-Ya-y/B-Zb-z/;
            $ic =~ s/(\d+)/$1 + 1/eg;
        }