aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rexml/source.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rexml/source.rb')
-rw-r--r--lib/rexml/source.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rexml/source.rb b/lib/rexml/source.rb
index 46c2fc79cd..112393cfd4 100644
--- a/lib/rexml/source.rb
+++ b/lib/rexml/source.rb
@@ -149,9 +149,9 @@ module REXML
if encoding
self.encoding = encoding
elsif str[0,2] == "\xfe\xff"
- @line_break = ">".encode("UTF-16BE")
+ @line_break = "\000>"
elsif str[0,2] == "\xff\xfe"
- @line_break = ">".encode("UTF-16LE")
+ @line_break = ">\000"
elsif str[0,2] == "\xef\xbb"
str += @source.read(1)
str = '' if (str[2,1] == "\xBF")