* texi2pod.pl: Handle @end ftable and @end vtable.
authorzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 26 Mar 2002 03:04:41 +0000 (03:04 +0000)
committerzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 26 Mar 2002 03:04:41 +0000 (03:04 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51364 138bc75d-0d04-0410-961f-82ee72b054a4

contrib/ChangeLog
contrib/texi2pod.pl

index 5ea9651..29572c9 100644 (file)
@@ -1,3 +1,7 @@
+2002-03-25  Zack Weinberg  <zack@codesourcery.com>
+
+       * texi2pod.pl: Handle @end ftable and @end vtable.
+
 2002-03-11  Zack Weinberg  <zack@codesourcery.com>
 
        * texi2pod.pl: Handle @include, @ftable, @vtable.
index 0cae122..4fb8892 100755 (executable)
@@ -151,7 +151,7 @@ while(<$inf>) {
        } elsif ($ended =~ /^(?:example|smallexample|display)$/) {
            $shift = "";
            $_ = "";    # need a paragraph break
-       } elsif ($ended =~ /^(?:itemize|enumerate|table)$/) {
+       } elsif ($ended =~ /^(?:itemize|enumerate|[fv]?table)$/) {
            $_ = "\n=back\n";
            $ic = pop @icstack;
        } else {