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
This commit is contained in:
Uros Bizjak 2014-05-24 08:38:31 +02:00
parent c517fc92b5
commit 386c402747
2 changed files with 13 additions and 9 deletions

View 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

View File

@ -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;
}