summaryrefslogtreecommitdiff
path: root/lib/rexml/document.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rexml/document.rb')
-rw-r--r--lib/rexml/document.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/rexml/document.rb b/lib/rexml/document.rb
index 084ebd2a39..a7f056ad3f 100644
--- a/lib/rexml/document.rb
+++ b/lib/rexml/document.rb
@@ -159,9 +159,10 @@ module REXML
def write( output=$stdout, indent=-1, transitive=false, ie_hack=false )
output = Output.new( output, xml_decl.encoding ) if xml_decl.encoding != "UTF-8" && !output.kind_of?(Output)
@children.each { |node|
- indent( output, indent) if node.node_type == :element
- node.write( output, indent, transitive, ie_hack )
- output << "\n" unless indent<0 or node == @children[-1]
+ indent( output, indent ) if node.node_type == :element
+ if node.write( output, indent, transitive, ie_hack )
+ output << "\n" unless indent<0 or node == @children[-1]
+ end
}
end