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:
parent
c517fc92b5
commit
386c402747
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user