mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* enc/iso_8859_{4,13}.c: Windows-1257 is replica of ISO-8859-13.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15495 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
fc46d89b6d
commit
a2d85d61bd
3 changed files with 12 additions and 3 deletions
|
@ -1,4 +1,6 @@
|
|||
Fri Feb 15 18:44:05 2008 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
Sat Feb 16 05:49:54 2008 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* enc/iso_8859_{4,13}.c: Windows-1257 is replica of ISO-8859-13.
|
||||
|
||||
* string.c (single_byte_optimizable): rb_enc_mbminlen must be 1
|
||||
when rb_enc_mbmaxlen is 1.
|
||||
|
|
|
@ -231,3 +231,12 @@ OnigEncodingDefine(iso_8859_13, ISO_8859_13) = {
|
|||
onigenc_always_true_is_allowed_reverse_match
|
||||
};
|
||||
ENC_ALIAS("ISO8859-13", "ISO-8859-13");
|
||||
|
||||
/*
|
||||
* Name: windows-1257
|
||||
* MIBenum: 2257
|
||||
* http://www.microsoft.com/globaldev/reference/sbcs/1257.mspx
|
||||
* http://en.wikipedia.org/wiki/Windows-1257
|
||||
*/
|
||||
ENC_REPLICATE("Windows-1257", "ISO-8859-13");
|
||||
ENC_ALIAS("CP1257", "Windows-1257");
|
||||
|
|
|
@ -240,5 +240,3 @@ OnigEncodingDefine(iso_8859_4, ISO_8859_4) = {
|
|||
onigenc_always_true_is_allowed_reverse_match
|
||||
};
|
||||
ENC_ALIAS("ISO8859-4", "ISO-8859-4");
|
||||
ENC_REPLICATE("Windows-1257", "ISO-8859-4");
|
||||
ENC_ALIAS("CP1257", "Windows-1257");
|
||||
|
|
Loading…
Reference in a new issue