mirror of git://gcc.gnu.org/git/gcc.git
* texi2pod.pl: Correct handling of @itemize with no argument.
From-SVN: r123514
This commit is contained in:
parent
618bf37b05
commit
3caecafa48
|
|
@ -1,3 +1,7 @@
|
||||||
|
2007-04-04 Zack Weinberg <zack@mrtock.ucsd.edu>
|
||||||
|
|
||||||
|
* texi2pod.pl: Correct handling of @itemize with no argument.
|
||||||
|
|
||||||
2007-03-17 Hans-Peter Nilsson <hp@axis.com>
|
2007-03-17 Hans-Peter Nilsson <hp@axis.com>
|
||||||
|
|
||||||
* uninclude: New utility, from Alexandre Oliva.
|
* uninclude: New utility, from Alexandre Oliva.
|
||||||
|
|
|
||||||
|
|
@ -264,7 +264,7 @@ while(<$inf>) {
|
||||||
if (defined $1) {
|
if (defined $1) {
|
||||||
$ic = $1;
|
$ic = $1;
|
||||||
} else {
|
} else {
|
||||||
$ic = '@bullet';
|
$ic = '*';
|
||||||
}
|
}
|
||||||
$_ = "\n=over 4\n";
|
$_ = "\n=over 4\n";
|
||||||
$endw = "itemize";
|
$endw = "itemize";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue