summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/library/scala/xml/Utility.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/xml/Utility.scala b/src/library/scala/xml/Utility.scala
index 9d05e71f24..3a83d6be57 100644
--- a/src/library/scala/xml/Utility.scala
+++ b/src/library/scala/xml/Utility.scala
@@ -46,7 +46,7 @@ object Utility extends AnyRef with parsing.TokenTests {
case '>' => s.append(">")
case '&' => s.append("&")
case '"' => s.append(""")
- case '\'' => s.append("'")
+ //case '\'' => s.append("'") // is valid xhtml but not html, and IE doesn't know it, says jweb
case _ => s.append(c)
}
s