summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-25 07:37:15 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-25 07:37:15 +0000
commitc90dbedbb1dab110596bad9d255bc61a86b89eb0 (patch)
treea8562daba5d396badb0fdac89c6c9928e5957373
parent47aa40cd55fa484b643559a25c27e77e209b5a6c (diff)
* enc/trans/japanese.c (rb_to_EUC_JP): fixed typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14682 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--enc/trans/japanese.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6711dcec97..f4a0c865a0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Dec 25 16:37:12 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * enc/trans/japanese.c (rb_to_EUC_JP): fixed typo.
+
Tue Dec 25 16:34:58 2007 NAKAMURA Usaku <usa@ruby-lang.org>
* ext/dl/depend: add dependencies. [ruby-dev:32760]
diff --git a/enc/trans/japanese.c b/enc/trans/japanese.c
index 3e03f2c969..1b0cc30ba5 100644
--- a/enc/trans/japanese.c
+++ b/enc/trans/japanese.c
@@ -23633,7 +23633,7 @@ to_EUC_JP = {
};
static rb_transcoder
rb_to_EUC_JP = {
- "EUC_JP", "UTF-8", &to_EUC_JP, 2, 1,
+ "EUC-JP", "UTF-8", &to_EUC_JP, 2, 1,
NULL, NULL,
};