diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-02-17 03:21:20 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-02-17 03:21:20 +0000 |
commit | 8984fa674290c17b62c7cf5cf0dd266d297fc14b (patch) | |
tree | 2a4bee0a1c6734183c898f508854551d1ee1d60c /enc/gbk.c | |
parent | 0f4199fb56ec12dae32a6fa099f15aaa7e55d10f (diff) |
* enc/{euc_jp.c,gbk.c,iso_8859_1.c,iso_8859_11.c,iso_8859_13.c,
iso_8859_2.c,iso_8859_6.c,iso_8859_7.c,iso_8859_8.c,iso_8859_9.c,
shift_jis.c,windows_1251.c}: add document about encodings.
* enc/cp949.c: divided into new file.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15516 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enc/gbk.c')
-rw-r--r-- | enc/gbk.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -212,5 +212,11 @@ OnigEncodingDefine(gbk, GBK) = { gbk_left_adjust_char_head, gbk_is_allowed_reverse_match }; +/* + * Name: GBK + * MIBenum: 113 + * Link: http://www.iana.org/assignments/character-sets + * Link: http://www.iana.org/assignments/charset-reg/GBK + * Link: http://www.microsoft.com/globaldev/reference/dbcs/936.mspx + */ ENC_ALIAS("CP936", "GBK"); -ENC_REPLICATE("CP949", "GBK"); |