summaryrefslogtreecommitdiffstats
path: root/lib/rexml/formatters
diff options
context:
space:
mode:
authorser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-07-28 13:28:30 +0000
committerser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-07-28 13:28:30 +0000
commitd7c6f7953b2fd60fa580dcbaf01399337286e2be (patch)
tree39339b34942b981f71157109f4e3c8e032aa54e7 /lib/rexml/formatters
parente2b0268f54409bc0ddd75bcfbd263ab7fa32e01e (diff)
downloadruby-d7c6f7953b2fd60fa580dcbaf01399337286e2be.tar.gz
ruby-d7c6f7953b2fd60fa580dcbaf01399337286e2be.tar.xz
ruby-d7c6f7953b2fd60fa580dcbaf01399337286e2be.zip
Fixes a bug in the pretty printer related to an incomplete refactoring.
Merge code cleanups Fixes another bug related to the formatting code refactoring in 3.1.7 git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12854 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rexml/formatters')
-rw-r--r--lib/rexml/formatters/pretty.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/rexml/formatters/pretty.rb b/lib/rexml/formatters/pretty.rb
index 78eab2740..22b6d857c 100644
--- a/lib/rexml/formatters/pretty.rb
+++ b/lib/rexml/formatters/pretty.rb
@@ -57,8 +57,11 @@ module REXML
if compact
if node.children.inject(true) {|s,c| s & c.kind_of?(Text)}
string = ""
- node.children.each { |child| write( child, string, 0 ) }
- if string.length + @level < @width
+ old_level = @level
+ @level = 0
+ node.children.each { |child| write( child, string ) }
+ @level = old_level
+ if string.length < @width
output << string
skip = true
end