aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorUros Bizjak <uros@gcc.gnu.org>2014-05-24 08:38:31 +0200
committerUros Bizjak <uros@gcc.gnu.org>2014-05-24 08:38:31 +0200
commit386c402747d2bc6bad3e1bc2f9383d4d669576e0 (patch)
tree140d43fbc8105b33a8078e3441626b433505aebc /contrib
parentc517fc92b5dc6e19712c25bc13b73b5ab760ea01 (diff)
downloadgcc-386c402747d2bc6bad3e1bc2f9383d4d669576e0.zip
gcc-386c402747d2bc6bad3e1bc2f9383d4d669576e0.tar.gz
gcc-386c402747d2bc6bad3e1bc2f9383d4d669576e0.tar.bz2
texi2pod.pl: Force .pod file to not be a numbered list.
* texi2pod.pl: Force .pod file to not be a numbered list. From-SVN: r210889
Diffstat (limited to 'contrib')
-rw-r--r--contrib/ChangeLog18
-rwxr-xr-xcontrib/texi2pod.pl4
2 files changed, 13 insertions, 9 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog
index d0f62e5..b2c6cab 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 5a4bbac..55b6ba7 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\&LT;\&GT;$ic\n";
$ic =~ y/A-Ya-y/B-Zb-z/;
$ic =~ s/(\d+)/$1 + 1/eg;
}