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

* enc/*.c: add GB12345, UCS-{2,4}{BE,LE}.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15341 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2008-01-30 08:35:03 +00:00
parent 087801b64b
commit 9ac5a0ca4d
6 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Wed Jan 30 17:32:49 2008 NARUSE, Yui <naruse@ruby-lang.org>
* enc/*.c: add GB12345, UCS-{2,4}{BE,LE}.
Wed Jan 30 14:32:18 2008 NAKAMURA Usaku <usa@ruby-lang.org>
* lib/rdoc/ri/driver.rb (cache_file_for): shoudn't use `:' in filename.

View file

@ -10,3 +10,4 @@ Init_gb2312(void)
ENC_ALIAS("EUC-CN", "GB2312");
ENC_ALIAS("eucCN", "GB2312");
ENC_REPLICATE("GB12345", "GB2312");

View file

@ -215,3 +215,5 @@ OnigEncodingDefine(koi8_r, KOI8_R) = {
onigenc_single_byte_left_adjust_char_head,
onigenc_always_true_is_allowed_reverse_match
};
ENC_ALIAS("CP878", "KOI8-R");

View file

@ -257,3 +257,4 @@ OnigEncodingDefine(utf_16be, UTF_16BE) = {
utf16be_left_adjust_char_head,
onigenc_always_false_is_allowed_reverse_match
};
ENC_ALIAS("UCS-2BE", "UTF-16BE");

View file

@ -191,3 +191,5 @@ OnigEncodingDefine(utf_32be, UTF_32BE) = {
utf32be_left_adjust_char_head,
onigenc_always_false_is_allowed_reverse_match
};
ENC_ALIAS("UCS-4BE", "UTF-32BE");

View file

@ -191,3 +191,4 @@ OnigEncodingDefine(utf_32le, UTF_32LE) = {
utf32le_left_adjust_char_head,
onigenc_always_false_is_allowed_reverse_match
};
ENC_ALIAS("UCS-4LE", "UTF-32LE");