summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-18 02:47:41 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-18 02:47:41 +0000
commit622769060445a2c37c3fbc09cfc6ccbe9cda7f10 (patch)
treea138bbc7456a24d7831e4d14423399b98529f618
parente0f059a105029bb447a380b9718ff755ec62faee (diff)
* 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
-rw-r--r--ChangeLog4
-rwxr-xr-xtool/enc-unicode.rb8
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 <naruse@ruby-lang.org>
+
+ * tool/enc-unicode.rb: don't use 1.9 feature on tools.
+
Sat Feb 18 02:48:39 2012 Aaron Patterson <aaron@tenderlovemaking.com>
* 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