Commit 9fa09038 by Matt Kraai Committed by Matt Kraai

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

From-SVN: r69399
parent 3cec3f83
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.
......
......@@ -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";
......
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