From 2902959de91f967daf9285ae49eaaff0ffab6873 Mon Sep 17 00:00:00 2001 From: Than Ngo Date: Wed, 11 Sep 2019 16:07:18 +0200 Subject: [PATCH] drop latex2html-2K.1beta-tabularx.patch --- latex2html-2K.1beta-tabularx.patch | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 latex2html-2K.1beta-tabularx.patch diff --git a/latex2html-2K.1beta-tabularx.patch b/latex2html-2K.1beta-tabularx.patch deleted file mode 100644 index 90ed3be..0000000 --- a/latex2html-2K.1beta-tabularx.patch +++ /dev/null @@ -1,26 +0,0 @@ ---- latex2html-2K.1beta/versions/table.pl.tabularx Fri Nov 14 11:10:52 1997 -+++ latex2html-2K.1beta/versions/table.pl Wed Jan 24 15:11:01 2001 -@@ -121,6 +121,10 @@ - $htmlcolspec .= ""; - push(@colspec,"$cellopen=RIGHT NOWRAP>$content_mark$cellclose"); - $cols++; -+ } elsif ( $char eq "X" ) { -+ $htmlcolspec .= ""; -+ push(@colspec,"$cellopen=LEFT>$content_mark$cellclose"); -+ $cols++; - } elsif ( $char eq "p" ) { - $colspec =~ s/$next_pair_rx//; - ($pts,$len) = &convert_length($2); -@@ -170,7 +174,11 @@ - local($_) = @_; - s/$next_pair_rx//; - local($pts,$len) = &convert_length($2); -- &do_env_tabular($_," width=$pts"); -+ if ($pts != "") { -+ &do_env_tabular($_," width=$pts"); -+ } else { -+ &do_env_tabular($_); -+ } - } - - sub do_env_tabular {