diff options
author | uros <uros@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-05-24 06:38:31 +0000 |
---|---|---|
committer | uros <uros@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-05-24 06:38:31 +0000 |
commit | 9f67f7b5f88be8dc70fcb15f285aa3c825633452 (patch) | |
tree | 140d43fbc8105b33a8078e3441626b433505aebc /contrib | |
parent | aeed25a6c76cba8822bb42829d721134bbda6208 (diff) | |
download | gcc-9f67f7b5f88be8dc70fcb15f285aa3c825633452.tar.gz |
* texi2pod.pl: Force .pod file to not be a numbered list.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@210889 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/ChangeLog | 18 | ||||
-rwxr-xr-x | contrib/texi2pod.pl | 4 |
2 files changed, 13 insertions, 9 deletions
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 <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 @@ -277,7 +281,7 @@ 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. @@ -678,7 +682,7 @@ 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> @@ -751,7 +755,7 @@ 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. @@ -822,7 +826,7 @@ * 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 @@ -984,14 +988,14 @@ 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> 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; } |