mirror of git://gcc.gnu.org/git/gcc.git
* texi2pod.pl: Default @itemize's parameter to @bullet.
From-SVN: r69399
This commit is contained in:
parent
3cec3f8307
commit
9fa0903819
|
|
@ -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>
|
2003-07-12 Zack Weinberg <zack@codesourcery.com>
|
||||||
|
|
||||||
* gcc_update: gcc/acconfig.h no longer exists.
|
* gcc_update: gcc/acconfig.h no longer exists.
|
||||||
|
|
|
||||||
|
|
@ -241,9 +241,14 @@ while(<$inf>) {
|
||||||
and $_ = "\n=head3 $1\n";
|
and $_ = "\n=head3 $1\n";
|
||||||
|
|
||||||
# Block command handlers:
|
# Block command handlers:
|
||||||
/^\@itemize\s+(\@[a-z]+|\*|-)/ and do {
|
/^\@itemize(?:\s+(\@[a-z]+|\*|-))?/ and do {
|
||||||
push @endwstack, $endw;
|
push @endwstack, $endw;
|
||||||
push @icstack, $ic;
|
push @icstack, $ic;
|
||||||
|
if (defined $1) {
|
||||||
|
$ic = $1;
|
||||||
|
} else {
|
||||||
|
$ic = '@bullet';
|
||||||
|
}
|
||||||
$ic = $1;
|
$ic = $1;
|
||||||
$_ = "\n=over 4\n";
|
$_ = "\n=over 4\n";
|
||||||
$endw = "itemize";
|
$endw = "itemize";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue