summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xdoc/texi2pod.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/texi2pod.pl b/doc/texi2pod.pl
index c414ffcc69..5964449a9e 100755
--- a/doc/texi2pod.pl
+++ b/doc/texi2pod.pl
@@ -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";
};