mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
3a3e250975
commit
d6025a3be4
2 changed files with 14 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
Fri May 30 06:09:31 2008 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* enc/utf_8.c: add UTF8-MAC (UTF-8-MAC).
|
||||
|
||||
Fri May 30 04:17:13 2008 Akinori MUSHA <knu@iDaemons.org>
|
||||
|
||||
* enum.c (enum_count, count_all_i, Init_Enumerable),
|
||||
|
|
10
enc/utf_8.c
10
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");
|
||||
|
||||
|
|
Loading…
Reference in a new issue