* texi2pod.pl: Default @itemize's parameter to @bullet.

From-SVN: r69399
This commit is contained in:
Matt Kraai 2003-07-15 09:24:07 +00:00 committed by Matt Kraai
parent 3cec3f8307
commit 9fa0903819
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-07-15 Matt Kraai <kraai@alumni.cmu.edu>
* texi2pod.pl: Default @itemize's parameter to @bullet.
2003-07-12 Zack Weinberg <zack@codesourcery.com>
* gcc_update: gcc/acconfig.h no longer exists.

View File

@ -241,9 +241,14 @@ while(<$inf>) {
and $_ = "\n=head3 $1\n";
# Block command handlers:
/^\@itemize\s+(\@[a-z]+|\*|-)/ and do {
/^\@itemize(?:\s+(\@[a-z]+|\*|-))?/ and do {
push @endwstack, $endw;
push @icstack, $ic;
if (defined $1) {
$ic = $1;
} else {
$ic = '@bullet';
}
$ic = $1;
$_ = "\n=over 4\n";
$endw = "itemize";