From 3caecafa48e98f64ae0bf2744772a51178d8fb97 Mon Sep 17 00:00:00 2001 From: Zack Weinberg Date: Thu, 5 Apr 2007 05:46:41 +0000 Subject: [PATCH] * texi2pod.pl: Correct handling of @itemize with no argument. From-SVN: r123514 --- contrib/ChangeLog | 4 ++++ contrib/texi2pod.pl | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/contrib/ChangeLog b/contrib/ChangeLog index bbb70808947..81d486a9274 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2007-04-04 Zack Weinberg + + * texi2pod.pl: Correct handling of @itemize with no argument. + 2007-03-17 Hans-Peter Nilsson * uninclude: New utility, from Alexandre Oliva. diff --git a/contrib/texi2pod.pl b/contrib/texi2pod.pl index e7b983bd2d2..cd0ffd9435f 100755 --- a/contrib/texi2pod.pl +++ b/contrib/texi2pod.pl @@ -264,7 +264,7 @@ while(<$inf>) { if (defined $1) { $ic = $1; } else { - $ic = '@bullet'; + $ic = '*'; } $_ = "\n=over 4\n"; $endw = "itemize";