mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
49d993729f
valid_encoding mandatory unless from_encoding is registered in ValidEncoding. (transcode_tbl_only): ditto. (transcode_tblgen): ditto. (ValidEncoding): new function. * enc/trans/escape.trans: specify valid_encoding. * enc/trans/emoji_sjis_docomo.trans: ditto. * enc/trans/emoji.trans: ditto. * enc/trans/emoji_iso2022_kddi.trans: ditto. * enc/trans/big5.trans: ditto. * enc/trans/emoji_sjis_softbank.trans: ditto. * enc/trans/emoji_sjis_kddi.trans: ditto. * enc/trans/chinese.trans: use ValidEncoding() instead of ValidEncoding[]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26995 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
32 lines
768 B
Text
32 lines
768 B
Text
#include "transcode_data.h"
|
|
|
|
<%
|
|
gb2312_valid_byte_pattern = ValidEncoding('EUC-KR')
|
|
gb12345_valid_byte_pattern = ValidEncoding('EUC-KR')
|
|
|
|
transcode_tblgen "GB2312", "UTF-8",
|
|
[["{00-7f}", :nomap]] +
|
|
citrus_decode_mapsrc("euc", 0x8080, "GB2312/UCS"),
|
|
gb2312_valid_byte_pattern
|
|
|
|
transcode_tblgen "GB12345", "UTF-8",
|
|
[["{00-7f}", :nomap]] +
|
|
citrus_decode_mapsrc("euc", 0x8080, "GB12345/UCS"),
|
|
gb12345_valid_byte_pattern
|
|
|
|
transcode_tblgen "UTF-8", "GB2312",
|
|
[["{00-7f}", :nomap]] +
|
|
citrus_decode_mapsrc("euc", 0x8080, "UCS/GB2312")
|
|
|
|
transcode_tblgen "UTF-8", "GB12345",
|
|
[["{00-7f}", :nomap]] +
|
|
citrus_decode_mapsrc("euc", 0x8080, "UCS/GB12345")
|
|
%>
|
|
|
|
<%= transcode_generated_code %>
|
|
|
|
void
|
|
Init_chinese(void)
|
|
{
|
|
<%= transcode_register_code %>
|
|
}
|