summaryrefslogtreecommitdiffstats
path: root/ext/nkf/lib
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-06 03:20:10 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-06 03:20:10 +0000
commit50fbcba07f9256aeca891ad85f94f8189b9e8f8a (patch)
tree6842d12c24d50edb31585527512e3e3d602be557 /ext/nkf/lib
parent8f5eb20c1dda29e05c3ce66f28a8a9fea939d75e (diff)
downloadruby-50fbcba07f9256aeca891ad85f94f8189b9e8f8a.tar.gz
ruby-50fbcba07f9256aeca891ad85f94f8189b9e8f8a.tar.xz
ruby-50fbcba07f9256aeca891ad85f94f8189b9e8f8a.zip
* ext/nkf/lib/kconv.rb (Kconv::toeuc): remove -m0 [ruby-dev:29505]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10870 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/nkf/lib')
-rw-r--r--ext/nkf/lib/kconv.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/nkf/lib/kconv.rb b/ext/nkf/lib/kconv.rb
index a15446d55..4ffe8d984 100644
--- a/ext/nkf/lib/kconv.rb
+++ b/ext/nkf/lib/kconv.rb
@@ -156,7 +156,7 @@ module Kconv
# convert halfwidth katakana to fullwidth katakana.
# If you don't want it, use NKF.nkf('-exm0', str).
def toeuc(str)
- ::NKF::nkf('-em0', str)
+ ::NKF::nkf('-em', str)
end
module_function :toeuc