From 3f8211a1133a401dd8e4cb6ca56b0dae6a09793a Mon Sep 17 00:00:00 2001 From: nagachika Date: Sun, 19 Oct 2014 14:34:20 +0000 Subject: [PATCH] * lib/unicode_normalize.rb: (unicode_normalize!): change method name. catch up the method name change at r48014. [Feature #10084] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48027 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ lib/unicode_normalize.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 68447ca612..970474e796 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sun Oct 19 23:31:29 2014 CHIKANAGA Tomoyuki + + * lib/unicode_normalize.rb: (unicode_normalize!): change method name. + catch up the method name change at r48014. [Feature #10084] + Sun Oct 19 20:05:58 2014 SHIBATA Hiroshi * ext/tk/lib/tkextlib/tile/treeview.rb: fix syntax error. diff --git a/lib/unicode_normalize.rb b/lib/unicode_normalize.rb index 576f6806da..7719a372be 100644 --- a/lib/unicode_normalize.rb +++ b/lib/unicode_normalize.rb @@ -47,7 +47,7 @@ class String def unicode_normalize!(form = :nfc) require 'unicode_normalize/normalize.rb' unless defined? UnicodeNormalize # String.send(:define_method, :normalize!, ->(form = :nfc) { replace(normalize(form)) } ) - replace(self.normalize(form)) + replace(self.unicode_normalize(form)) end # :call-seq: