This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Fix texi2pod.pl oversight


When I added @[fv]table support to texi2pod I neglected to add @end
[fv]table as well.  I'm not sure how this managed to slip through
testing.  Anyway, here's the fix.  (Applied after regenerating cpp.1
to make sure it worked.)

zw

	* texi2pod.pl: Handle @end ftable and @end vtable.

===================================================================
Index: contrib/texi2pod.pl
--- contrib/texi2pod.pl	2002/03/11 20:37:13	1.16
+++ contrib/texi2pod.pl	2002/03/26 03:03:17
@@ -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 {


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]