1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* enc/trans/utf8_mac-tbl.rb: update conversion table to recent OS X.

Previous table is used on Mac OS X 10.1 or prior.
  This table is used on 10.2 or later. [ruby-dev:47680]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42789 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2013-09-02 23:36:01 +00:00
parent c68596aef1
commit 853c346dde
3 changed files with 11955 additions and 775 deletions

View file

@ -1,3 +1,9 @@
Tue Sep 3 08:20:46 2013 NARUSE, Yui <naruse@ruby-lang.org>
* enc/trans/utf8_mac-tbl.rb: update conversion table to recent OS X.
Previous table is used on Mac OS X 10.1 or prior.
This table is used on 10.2 or later. [ruby-dev:47680]
Tue Sep 3 07:49:25 2013 Akinori MUSHA <knu@iDaemons.org>
* numeric.c (NUM_STEP_SCAN_ARGS): On sencond thought, keep

File diff suppressed because it is too large Load diff

View file

@ -53,6 +53,7 @@ class Test_StringNormalize < Test::Unit::TestCase
\u03D3 \u03D2\u0301
\u0401 \u0415\u0308
\u2260 =\u0338
\u{c548} \u{110b}\u{1161}\u{11ab}
].scan(/(\S+)\s+(\S+)/) do |expected, src|
result = Bug::String.new(src).normalize_ospath
assert_equal expected, result,