From 5f3ee100b1ae2def7eb374d8de700f8f3eaa68b2 Mon Sep 17 00:00:00 2001 From: ser Date: Mon, 19 Jul 2004 01:43:31 +0000 Subject: r1025 | ser | 2004-07-18 08:18:36 -0400 (Sun, 18 Jul 2004) | 2 lines @@ Fixed a CDATA pretty-printing bug. (#39) @@ r1026 | ser | 2004-07-18 09:03:02 -0400 (Sun, 18 Jul 2004) | 4 lines @@ Fixed a buffering bug in Source.rb that affected the SAX parser @@ This bug was related to how REXML determines the encoding of a file, and evinced itself by hanging on input when using the SAX parser. r1028 | ser | 2004-07-18 09:06:18 -0400 (Sun, 18 Jul 2004) | 3 lines * Minor pretty printing fix. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6677 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rexml/xmldecl.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/rexml/xmldecl.rb') diff --git a/lib/rexml/xmldecl.rb b/lib/rexml/xmldecl.rb index 1c0bde8f4..3f90e0160 100644 --- a/lib/rexml/xmldecl.rb +++ b/lib/rexml/xmldecl.rb @@ -38,7 +38,7 @@ module REXML end def write writer, indent=-1, transitive=false, ie_hack=false - return "" unless @writethis or writer.kind_of? Output + return nil unless @writethis or writer.kind_of? Output indent( writer, indent ) writer << START.sub(/\\/u, '') if writer.kind_of? Output -- cgit