diff options
| -rw-r--r-- | contrib/ChangeLog | 4 | ||||
| -rwxr-xr-x | contrib/texi2pod.pl | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog index bbb7080..81d486a 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2007-04-04 Zack Weinberg <zack@mrtock.ucsd.edu> + + * texi2pod.pl: Correct handling of @itemize with no argument. + 2007-03-17 Hans-Peter Nilsson <hp@axis.com> * uninclude: New utility, from Alexandre Oliva. diff --git a/contrib/texi2pod.pl b/contrib/texi2pod.pl index e7b983b..cd0ffd9 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"; |
