diff --git a/contrib/ChangeLog b/contrib/ChangeLog index d0f62e57a05..b2c6cabfba3 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2014-05-24 Uros Bizjak + + * texi2pod.pl: Force .pod file to not be a numbered list. + 2014-05-20 Richard Sandiford * dg-extract-results.py (parse_run): Handle warnings that are printed @@ -90,7 +94,7 @@ 2013-08-03 Caroline Tice * gcc_update: Add libvtv files. - + 2013-06-06 Brooks Moses * testsuite-management/validate_failures.py: Fix handling of @@ -277,7 +281,7 @@ 2012-08-24 Diego Novillo * testsuite-management/x86_64-unknown-linux-gnu.xfail: Update. - + 2012-08-14 Diego Novillo * testsuite-management/x86_64-unknown-linux-gnu.xfail: New. @@ -678,7 +682,7 @@ 2009-08-18 H.J. Lu PR testsuite/40704 - * test_summary: Filter out "\r". + * test_summary: Filter out "\r". 2009-06-02 Alexandre Oliva @@ -751,7 +755,7 @@ 2008-03-10 Janis Johnson * 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. @@ -822,7 +826,7 @@ * texi2pod.pl: Handle @asis. (postprocess): Move @gccoptlist{} after all formatting commands. - + 2007-10-01 Alexandre Oliva * compare-debug: Avoid spurious errors when .stripped files @@ -984,14 +988,14 @@ 2005-10-28 Daniel Berlin Ben Elliston - + * gcc_update: Update for svn. * newcvsroot: Ditto. * gcc_build: Ditto. 2005-10-21 Mark Mitchell - * 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 diff --git a/contrib/texi2pod.pl b/contrib/texi2pod.pl index 5a4bbacdf5e..55b6ba75227 100755 --- a/contrib/texi2pod.pl +++ b/contrib/texi2pod.pl @@ -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\<\>$ic\n"; $ic =~ y/A-Ya-y/B-Zb-z/; $ic =~ s/(\d+)/$1 + 1/eg; }