* texi2pod.pl: Correct handling of @itemize with no argument.
authorZack Weinberg <zack@mrtock.ucsd.edu>
Thu, 5 Apr 2007 05:46:41 +0000 (05:46 +0000)
committerZack Weinberg <zack@gcc.gnu.org>
Thu, 5 Apr 2007 05:46:41 +0000 (05:46 +0000)
From-SVN: r123514

contrib/ChangeLog
contrib/texi2pod.pl

index bbb70808947c08f9e517e592577c151242b93be3..81d486a92743f0d4771e357e4340e7449b74e722 100644 (file)
@@ -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.
index e7b983bd2d282c0a46088d065af2d165ee53aa83..cd0ffd9435f735fab6d173716e852ebb74b4aafb 100755 (executable)
@@ -264,7 +264,7 @@ while(<$inf>) {
        if (defined $1) {
            $ic = $1;
        } else {
-           $ic = '@bullet';
+           $ic = '*';
        }
        $_ = "\n=over 4\n";
        $endw = "itemize";