Bug #8602 » rexml-text-append-fix.patch
lib/rexml/text.rb | ||
---|---|---|
# of this text node.
|
||
def <<( to_append )
|
||
@string << to_append.gsub( /\r\n?/, "\n" )
|
||
@normalized = @unnormalized = nil
|
||
end
|
||