summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-01-31 06:55:17 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-01-31 06:55:17 +0000
commita9770c8058088ea9d7a2af1279e2c184cd763bb1 (patch)
tree45a197775881b7ee0c96e32d1037c7d2289b72de
parent8129a8dfbdac69ac5879aedeec45ff7c444954ee (diff)
* lib/rexml/text.rb (REXML::Text#initialize): fix typo and a bug that
seems to be caused by refactoring. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26518 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog7
-rw-r--r--lib/rexml/text.rb4
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index b2eb657a7f..195c60a9a1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,13 @@
+Sun Jan 31 15:50:34 2010 Yusuke Endoh <mame@tsg.ne.jp>
+
+ * lib/rexml/text.rb (REXML::Text#initialize): fix typo and a bug that
+ seems to be caused by refactoring.
+
Sun Jan 31 15:46:37 2010 Yusuke Endoh <mame@tsg.ne.jp>
* lib/rexml/parent.rb (REXML::Parent#delete): return the deleted node
because the rdoc of REXML::Element#delete_element says it returns
- "the element that was removed."
+ "the element that was removed." [REXMLTracker#161]
Sun Jan 31 14:33:00 2010 James Edward Gray II <jeg2@ruby-lang.org>
diff --git a/lib/rexml/text.rb b/lib/rexml/text.rb
index f1e14e75fe..c01ab33590 100644
--- a/lib/rexml/text.rb
+++ b/lib/rexml/text.rb
@@ -88,7 +88,7 @@ module REXML
# Text.new( "sean russell", false, nil, true, ["s"] ) #-> "sean russell"
# In the last example, the +entity_filter+ argument is ignored.
#
- # +pattern+ INTERNAL USE ONLY
+ # +illegal+ INTERNAL USE ONLY
def initialize(arg, respect_whitespace=false, parent=nil, raw=nil,
entity_filter=nil, illegal=NEEDS_A_SECOND_CHECK )
@@ -117,7 +117,7 @@ module REXML
@string.gsub!( /\r\n?/, "\n" )
- Text.check(@string, NEEDS_A_SECOND_CHECK, doctype) if @raw and @parent
+ Text.check(@string, illegal, doctype) if @raw
end
def parent= parent