diff options
author | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-06-05 11:22:32 +0000 |
---|---|---|
committer | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-06-05 11:22:32 +0000 |
commit | 40a09ced3d4af868215b8b5ec6240c5203929de2 (patch) | |
tree | c028a576aeb16d137a85dfc62bddf48df6fd3add /lib/rexml | |
parent | 5d1ebb873536dfd9594a55376800f5c57f380edb (diff) | |
download | ruby-40a09ced3d4af868215b8b5ec6240c5203929de2.tar.gz ruby-40a09ced3d4af868215b8b5ec6240c5203929de2.tar.xz ruby-40a09ced3d4af868215b8b5ec6240c5203929de2.zip |
* lib/rexml/document.rb (REXML::Document:write): leaky modification
trans -> transitive. [ruby-dev:32040], r13686
* lib/rexml/text.rb (Text.check): fix check for illigal characher.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16840 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rexml')
-rw-r--r-- | lib/rexml/document.rb | 4 | ||||
-rw-r--r-- | lib/rexml/text.rb | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/rexml/document.rb b/lib/rexml/document.rb index 029c04229..42d70bb6d 100644 --- a/lib/rexml/document.rb +++ b/lib/rexml/document.rb @@ -168,7 +168,7 @@ module REXML # indentation will be twice this number of spaces, and children will be # indented an additional amount. For a value of 3, every item will be # indented 3 more levels, or 6 more spaces (2 * 3). Defaults to -1 - # trans:: + # transitive:: # If transitive is true and indent is >= 0, then the output will be # pretty-printed in such a way that the added whitespace does not affect # the absolute *value* of the document -- that is, it leaves the value @@ -184,7 +184,7 @@ module REXML output = Output.new( output, xml_decl.encoding ) end formatter = if indent > -1 - if trans + if transitive REXML::Formatters::Transitive.new( indent, ie_hack ) else REXML::Formatters::Pretty.new( indent, ie_hack ) diff --git a/lib/rexml/text.rb b/lib/rexml/text.rb index 281b87890..fac5ac3e4 100644 --- a/lib/rexml/text.rb +++ b/lib/rexml/text.rb @@ -150,7 +150,7 @@ module REXML end # context sensitive - string.scan(pattern).each do + string.scan(pattern) do if $1[-1] != ?; raise "Illegal character '#{$1}' in raw string \"#{string}\"" elsif $1[0] == ?& |