summaryrefslogtreecommitdiff
path: root/transcode.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-27 06:28:34 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-27 06:28:34 +0000
commit415d59e3e43c103b7a642e511abb683c785ef9b6 (patch)
tree8d7590a2f9ed25acaedf7a91c01ea50b7dcceb76 /transcode.c
parent1f8620ca22d75b1f4487975ed2012a866dca9c3c (diff)
* transcode.c (make_econv_exception): show source and destination
encoding. [ruby-dev:37285] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21092 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'transcode.c')
-rw-r--r--transcode.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/transcode.c b/transcode.c
index 72e26f6df2..f925daa584 100644
--- a/transcode.c
+++ b/transcode.c
@@ -2005,6 +2005,14 @@ make_econv_exception(rb_econv_t *ec)
StringValueCStr(dumped),
ec->last_error.source_encoding,
ec->last_error.destination_encoding);
+ if (strcmp(ec->last_error.source_encoding,
+ ec->source_encoding_name) != 0 ||
+ strcmp(ec->last_error.destination_encoding,
+ ec->destination_encoding_name) != 0) {
+ rb_str_catf(mesg, " in conversion from %s to %s",
+ ec->source_encoding_name,
+ ec->destination_encoding_name);
+ }
exc = rb_exc_new3(rb_eUndefinedConversionError, mesg);
idx = rb_enc_find_index(ec->last_error.source_encoding);
if (0 <= idx)