summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--lib/rexml/text.rb9
2 files changed, 10 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 26b24037ba..16216d45b0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue Apr 6 06:19:36 2010 NARUSE, Yui <naruse@ruby-lang.org>
+
+ * lib/rexml/text.rb (REXML::Text.check): comment out
+ broken logic.
+
Tue Apr 6 05:59:12 2010 NARUSE, Yui <naruse@ruby-lang.org>
* lib/rexml/parsers/baseparser.rb (LETTER, DIGIT):
diff --git a/lib/rexml/text.rb b/lib/rexml/text.rb
index 2e42a5d423..05d5341abb 100644
--- a/lib/rexml/text.rb
+++ b/lib/rexml/text.rb
@@ -159,10 +159,11 @@ module REXML
else
raise "Illegal character '#{$1}' in raw string \"#{string}\""
end
- elsif @parent and $3 and !SUBSTITUTES.include?($1)
- if !doctype or !doctype.entities.has_key?($3)
- raise "Undeclared entity '#{$1}' in raw string \"#{string}\""
- end
+ # FIXME: below can't work but this needs API change.
+ # elsif @parent and $3 and !SUBSTITUTES.include?($1)
+ # if !doctype or !doctype.entities.has_key?($3)
+ # raise "Undeclared entity '#{$1}' in raw string \"#{string}\""
+ # end
end
end
end