* texi2pod.pl: Correct handling of @itemize with no argument.

From-SVN: r123514
This commit is contained in:
Zack Weinberg 2007-04-05 05:46:41 +00:00 committed by Zack Weinberg
parent 618bf37b05
commit 3caecafa48
2 changed files with 5 additions and 1 deletions

View File

@ -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>
* uninclude: New utility, from Alexandre Oliva.

View File

@ -264,7 +264,7 @@ while(<$inf>) {
if (defined $1) {
$ic = $1;
} else {
$ic = '@bullet';
$ic = '*';
}
$_ = "\n=over 4\n";
$endw = "itemize";