]> gcc.gnu.org Git - gcc.git/commitdiff
* texi2pod.pl: Default @itemize's parameter to @bullet.
authorMatt Kraai <kraai@alumni.cmu.edu>
Tue, 15 Jul 2003 09:24:07 +0000 (09:24 +0000)
committerMatt Kraai <kraai@gcc.gnu.org>
Tue, 15 Jul 2003 09:24:07 +0000 (09:24 +0000)
From-SVN: r69399

contrib/ChangeLog
contrib/texi2pod.pl

index 14efc3a684adf959e0a5b410c1e92d47b6bdb462..5d4999ab5ce629af1d41aa605269dbca1db6bbee 100644 (file)
@@ -1,3 +1,7 @@
+2003-07-15  Matt Kraai  <kraai@alumni.cmu.edu>
+
+       * texi2pod.pl: Default @itemize's parameter to @bullet.
+
 2003-07-12  Zack Weinberg  <zack@codesourcery.com>
 
        * gcc_update: gcc/acconfig.h no longer exists.
index 8c63ba29200e4a167d37b9be3dbb92cbef467edb..190d58e8c952de693802636e067b27f3430279ee 100755 (executable)
@@ -241,9 +241,14 @@ 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;
+       if (defined $1) {
+           $ic = $1;
+       } else {
+           $ic = '@bullet';
+       }
        $ic = $1;
        $_ = "\n=over 4\n";
        $endw = "itemize";
This page took 0.066889 seconds and 5 git commands to generate.