aboutsummaryrefslogtreecommitdiff
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@codesourcery.com>2002-03-26 03:04:41 +0000
commit961dd4bda853a021717e60807f73bd099354c07f (patch)
tree5411dd26d4709915ada53fbcecf6217d630a1e0f /contrib/texi2pod.pl
parent3456e8471c301132815c54541ad4e9ade5814a50 (diff)
* texi2pod.pl: Handle @end ftable and @end vtable.
git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@51364 138bc75d-0d04-0410-961f-82ee72b054a4
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 {