From 622769060445a2c37c3fbc09cfc6ccbe9cda7f10 Mon Sep 17 00:00:00 2001 From: naruse Date: Sat, 18 Feb 2012 02:47:41 +0000 Subject: * tool/enc-unicode.rb: don't use 1.9 feature on tools. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34671 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ tool/enc-unicode.rb | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9fa017ca30..1135ad5973 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sat Feb 18 07:52:45 2012 NARUSE, Yui + + * tool/enc-unicode.rb: don't use 1.9 feature on tools. + Sat Feb 18 02:48:39 2012 Aaron Patterson * lib/fileutils.rb: refactored FileUtil methods to use the diff --git a/tool/enc-unicode.rb b/tool/enc-unicode.rb index cd57ba9387..bce5789cb7 100755 --- a/tool/enc-unicode.rb +++ b/tool/enc-unicode.rb @@ -125,9 +125,9 @@ end def parse_scripts(data, categories) files = [ - {fn: 'DerivedCoreProperties.txt', title: 'Derived Property'}, - {fn: 'Scripts.txt', title: 'Script'}, - {fn: 'PropList.txt', title: 'Binary Property'} + {:fn => 'DerivedCoreProperties.txt', :title => 'Derived Property'}, + {:fn => 'Scripts.txt', :title => 'Script'}, + {:fn => 'PropList.txt', :title => 'Binary Property'} ] current = nil cps = [] @@ -231,7 +231,7 @@ $const_cache = {} # the group def make_const(prop, data, name) puts "\n/* '#{prop}': #{name} */" - if origprop = $const_cache.key(data) + if origprop = $const_cache.index(data) puts "#define CR_#{prop} CR_#{origprop}" else $const_cache[prop] = data -- cgit v1.2.3