summaryrefslogtreecommitdiff
path: root/lib/rexml/encodings/EUC-JP.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rexml/encodings/EUC-JP.rb')
-rw-r--r--lib/rexml/encodings/EUC-JP.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rexml/encodings/EUC-JP.rb b/lib/rexml/encodings/EUC-JP.rb
index 23a1c3c657..1be5663be8 100644
--- a/lib/rexml/encodings/EUC-JP.rb
+++ b/lib/rexml/encodings/EUC-JP.rb
@@ -18,11 +18,11 @@ rescue LoadError
module REXML
module Encoding
def from_euc_jp(str)
- return Iconv::iconv("utf-8", "euc-jp", str)[0]
+ return Iconv::iconv("utf-8", "euc-jp", str).join
end
def to_euc_jp content
- return Iconv::iconv("euc-jp", "utf-8", content)[0]
+ return Iconv::iconv("euc-jp", "utf-8", content).join
end
end
end