summaryrefslogtreecommitdiff
path: root/lib/rexml/cdata.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rexml/cdata.rb')
-rw-r--r--lib/rexml/cdata.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rexml/cdata.rb b/lib/rexml/cdata.rb
index 9e82376cd8..ffedac1b53 100644
--- a/lib/rexml/cdata.rb
+++ b/lib/rexml/cdata.rb
@@ -59,7 +59,7 @@ module REXML
# c = CData.new( " Some text " )
# c.write( $stdout ) #-> <![CDATA[ Some text ]]>
def write( output=$stdout, indent=-1, transitive=false, ie_hack=false )
- indent( output, indent ) unless transitive
+ #indent( output, indent ) unless transitive
output << START
output << @string
output << STOP