[FFmpeg-cvslog] r23408 - trunk/doc/texi2pod.pl
stefano
subversion
Tue Jun 1 16:00:42 CEST 2010
Author: stefano
Date: Tue Jun 1 16:00:42 2010
New Revision: 23408
Log:
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'."
Modified:
trunk/doc/texi2pod.pl
Modified: trunk/doc/texi2pod.pl
==============================================================================
--- trunk/doc/texi2pod.pl Tue Jun 1 15:09:49 2010 (r23407)
+++ trunk/doc/texi2pod.pl Tue Jun 1 16:00:42 2010 (r23408)
@@ -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";
};
More information about the ffmpeg-cvslog
mailing list