summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-02-15 20:55:27 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-02-15 20:55:27 +0000
commit7f20640f3d07c6f7644736fad1da6ba3035aba71 (patch)
tree3732eb1be42a195d3964ceb3593049e24d6214d3
parent3b6d0eef7d8bc1a138a577c3d47539ad4731c33b (diff)
downloadruby-7f20640f3d07c6f7644736fad1da6ba3035aba71.tar.gz
ruby-7f20640f3d07c6f7644736fad1da6ba3035aba71.tar.xz
ruby-7f20640f3d07c6f7644736fad1da6ba3035aba71.zip
* enc/iso_8859_{4,13}.c: Windows-1257 is replica of ISO-8859-13.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15495 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--enc/iso_8859_13.c9
-rw-r--r--enc/iso_8859_4.c2
3 files changed, 12 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index b9e8a8fb2..4777286b8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/enc/iso_8859_13.c b/enc/iso_8859_13.c
index cbb79d933..b821dadb5 100644
--- a/enc/iso_8859_13.c
+++ b/enc/iso_8859_13.c
@@ -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");
diff --git a/enc/iso_8859_4.c b/enc/iso_8859_4.c
index f548ed581..9c034b040 100644
--- a/enc/iso_8859_4.c
+++ b/enc/iso_8859_4.c
@@ -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");