summaryrefslogtreecommitdiff
path: root/contrib/texi2pod.pl
diff options
context:
space:
mode:
authorZack Weinberg <zack@codesourcery.com>2002-03-26 03:04:41 +0000
committerZack Weinberg <zack@gcc.gnu.org>2002-03-26 03:04:41 +0000
commit28852cc64a389ecfe00341c37ee0cb858c431a50 (patch)
tree5411dd26d4709915ada53fbcecf6217d630a1e0f /contrib/texi2pod.pl
parent5c00920976169d4c5f6a19538469783603a1e22e (diff)
* texi2pod.pl: Handle @end ftable and @end vtable.
From-SVN: r51364
Diffstat (limited to 'contrib/texi2pod.pl')
-rwxr-xr-xcontrib/texi2pod.pl2
1 files changed, 1 insertions, 1 deletions
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 {