From 28852cc64a389ecfe00341c37ee0cb858c431a50 Mon Sep 17 00:00:00 2001 From: Zack Weinberg Date: Tue, 26 Mar 2002 03:04:41 +0000 Subject: [PATCH] * texi2pod.pl: Handle @end ftable and @end vtable. From-SVN: r51364 --- contrib/ChangeLog | 4 ++++ contrib/texi2pod.pl | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 5ea9651a2e6..29572c92486 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2002-03-25 Zack Weinberg + + * texi2pod.pl: Handle @end ftable and @end vtable. + 2002-03-11 Zack Weinberg * texi2pod.pl: Handle @include, @ftable, @vtable. diff --git a/contrib/texi2pod.pl b/contrib/texi2pod.pl index 0cae122a788..4fb8892ccb8 100755 --- a/contrib/texi2pod.pl +++ b/contrib/texi2pod.pl @@ -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 { -- 2.30.2