> We should do that in 1.5 too (maybe 1.5.3).

Yes, url.sty is standard in all LaTeX-distributions (I guess also in tetex2), so it is save to remove the unneeded \IfFileExists command, so that people can use latex2html.

Attached is a patch.

Jürgen, what do you think?

regards Uwe
Index: LaTeXFeatures.cpp
===================================================================
--- LaTeXFeatures.cpp	(revision 20455)
+++ LaTeXFeatures.cpp	(working copy)
@@ -549,8 +549,8 @@
 
 	// url.sty
 	if (mustProvide("url"))
-		packages << "\\IfFileExists{url.sty}{\\usepackage{url}}\n"
-			    "                      {\\newcommand{\\url}{\\texttt}}\n";
+		packages << "\\usepackage{url}\n"
+					" \\newcommand{\\url}{\\texttt}\n";
 
 	// natbib.sty
 	if (mustProvide("natbib")) {

Reply via email to