aboutsummaryrefslogtreecommitdiff
path: root/contrib
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
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')
-rw-r--r--contrib/ChangeLog4
-rwxr-xr-xcontrib/texi2pod.pl2
2 files changed, 5 insertions, 1 deletions
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 <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.
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 {