Commit b2b6f9e7 authored by stefano's avatar stefano

Make texi2pod.pl accept @itemize commands with no following character

or texinfo command for specifying how to generate @item marks, and
make it use by default the mark symbol "*".

This is consistent with texinfo docs:
"If you don't specify a mark command, the default is `@bullet'."

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@23408 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f3a66de6
......@@ -241,10 +241,10 @@ 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;
$ic = $1;
$ic = $1 ? $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