Commit 386c4027 by Uros Bizjak

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
parent c517fc92
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
......
#! /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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment