aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-18 01:37:27 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-18 01:37:27 +0000
commitf28118eb693d721046ed8ef692724f915f3162e7 (patch)
tree21d11f27b6cdcced635f8efcb7a741757d4cd748
parentd8644f632b5678ca28d1b681e0e2f1109cad185e (diff)
downloadruby-f28118eb693d721046ed8ef692724f915f3162e7.tar.gz
* encoding.c (rb_enc_find_index): use original encoding name to
load DLL. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15104 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog3
-rw-r--r--encoding.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ce207099c4..a8be741586 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -19,6 +19,9 @@ Fri Jan 18 09:22:07 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* encoding.c (rb_enc_aliases_enc_i): exclude non alias names from
Encoding.aliases.
+ * encoding.c (rb_enc_find_index): use original encoding name to
+ load DLL.
+
Fri Jan 18 07:06:25 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* io.c (Init_IO): stdin/stdout may not be duplex.
diff --git a/encoding.c b/encoding.c
index 07a1f8bfc9..505aaa9dcb 100644
--- a/encoding.c
+++ b/encoding.c
@@ -497,7 +497,7 @@ rb_enc_find_index(const char *name)
enc_register_at(i, name, rb_enc_from_index(b));
}
else {
- i = load_encoding(name);
+ i = load_encoding(rb_enc_name(enc));
if (enc_autoload_p(rb_enc_from_index(i))) {
rb_warn("failed to load encoding (%s); use ASCII-8BIT instead",
name);