diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-05-29 22:12:57 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-05-29 22:12:57 +0000 |
commit | d6025a3be43e29e7cea49378ebeec5954c025954 (patch) | |
tree | 787cfc340de7f2c4f940ffddafda7534052e1839 /enc/utf_8.c | |
parent | 3a3e250975d0ce34b0e5628a2fc2a3bfa7722188 (diff) |
* enc/utf_8.c: add UTF8-MAC (UTF-8-MAC).
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16697 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enc/utf_8.c')
-rw-r--r-- | enc/utf_8.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/enc/utf_8.c b/enc/utf_8.c index 3a287b3e28..4eaf6a21e7 100644 --- a/enc/utf_8.c +++ b/enc/utf_8.c @@ -443,3 +443,13 @@ OnigEncodingDefine(utf_8, UTF_8) = { onigenc_always_true_is_allowed_reverse_match }; ENC_ALIAS("CP65001", "UTF-8"); + +/* + * Name: UTF8-MAC + * Link: http://developer.apple.com/documentation/MacOSX/Conceptual/BPFileSystem/BPFileSystem.html + * Link: http://developer.apple.com/qa/qa2001/qa1235.html + * Link: http://developer.apple.com/jp/qa/qa2001/qa1235.html + */ +ENC_REPLICATE("UTF8-MAC", "UTF-8"); +ENC_ALIAS("UTF-8-MAC", "UTF8-MAC"); + |