* texi2pod.pl: Default @itemize's parameter to @bullet.
From-SVN: r69399
This commit is contained in:
parent
3cec3f8307
commit
9fa0903819
2 changed files with 10 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Add table
Reference in a new issue