diff options
author | Zack Weinberg <zack@codesourcery.com> | 2002-03-26 03:04:41 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2002-03-26 03:04:41 +0000 |
commit | 28852cc64a389ecfe00341c37ee0cb858c431a50 (patch) | |
tree | 5411dd26d4709915ada53fbcecf6217d630a1e0f /contrib/texi2pod.pl | |
parent | 5c00920976169d4c5f6a19538469783603a1e22e (diff) | |
download | gcc-28852cc64a389ecfe00341c37ee0cb858c431a50.tar.gz |
* texi2pod.pl: Handle @end ftable and @end vtable.
From-SVN: r51364
Diffstat (limited to 'contrib/texi2pod.pl')
-rwxr-xr-x | contrib/texi2pod.pl | 2 |
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 { |