|
@@ -35,7 +35,7 @@ private enum CheckResult {
|
|
|
|
|
|
class Check {
|
|
|
|
|
|
- static var blanks = ~/^[ \r\n\t]*$/m;
|
|
|
+ static var blanks = ~/^[ \r\n\t]*$/;
|
|
|
|
|
|
static function isBlank( x : Xml ) {
|
|
|
return( x.nodeType == Xml.PCData && blanks.match(x.nodeValue) );
|
|
@@ -293,4 +293,4 @@ class Check {
|
|
|
throw makeError(m);
|
|
|
}
|
|
|
|
|
|
-}
|
|
|
+}
|