Blame SOURCES/latex2html-2K.1beta-tabularx.patch

93b0d3
--- latex2html-2K.1beta/versions/table.pl.tabularx	Fri Nov 14 11:10:52 1997
93b0d3
+++ latex2html-2K.1beta/versions/table.pl	Wed Jan 24 15:11:01 2001
93b0d3
@@ -121,6 +121,10 @@
93b0d3
 	    $htmlcolspec .= "";
93b0d3
 	    push(@colspec,"$cellopen=RIGHT NOWRAP>$content_mark$cellclose");
93b0d3
 	    $cols++;
93b0d3
+	} elsif ( $char eq "X" ) {
93b0d3
+	    $htmlcolspec .= "";
93b0d3
+	    push(@colspec,"$cellopen=LEFT>$content_mark$cellclose");
93b0d3
+	    $cols++;
93b0d3
 	} elsif ( $char eq "p" ) {
93b0d3
 	    $colspec =~ s/$next_pair_rx//;
93b0d3
 	    ($pts,$len) = &convert_length($2);
93b0d3
@@ -170,7 +174,11 @@
93b0d3
     local($_) = @_;
93b0d3
     s/$next_pair_rx//;
93b0d3
     local($pts,$len) = &convert_length($2);
93b0d3
-    &do_env_tabular($_," width=$pts");
93b0d3
+    if ($pts != "") {
93b0d3
+	&do_env_tabular($_," width=$pts");
93b0d3
+    } else {
93b0d3
+	&do_env_tabular($_);
93b0d3
+    }
93b0d3
 }
93b0d3
 
93b0d3
 sub do_env_tabular {