diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-05-31 16:15:15 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-05-31 16:15:15 +0000 |
commit | fcc86b0f4c443b7ab28fb61831b81767a8798292 (patch) | |
tree | 290c9a2a513731e52bd670a28f030ca627a2db6c /io.c | |
parent | 10c0604a347769ab23ac22aa83b495793ab543db (diff) | |
download | ruby-fcc86b0f4c443b7ab28fb61831b81767a8798292.tar.gz |
* io.c (io_encoding_set): should honor already set ecflags since it
might be set by mode option. fixed #4804
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31872 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r-- | io.c | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -7959,7 +7959,7 @@ static void io_encoding_set(rb_io_t *fptr, VALUE v1, VALUE v2, VALUE opt) { rb_encoding *enc, *enc2; - int ecflags; + int ecflags = fptr->encs.ecflags; VALUE ecopts, tmp; if (!NIL_P(v2)) { @@ -7980,24 +7980,22 @@ io_encoding_set(rb_io_t *fptr, VALUE v1, VALUE v2, VALUE opt) } else enc = rb_to_encoding(v2); - ecflags = rb_econv_prepare_opts(opt, &ecopts); + ecflags = rb_econv_prepare_options(opt, &ecopts, ecflags); } else { if (NIL_P(v1)) { /* Set to default encodings */ rb_io_ext_int_to_encs(NULL, NULL, &enc, &enc2); - ecflags = 0; ecopts = Qnil; } else { tmp = rb_check_string_type(v1); if (!NIL_P(tmp) && rb_enc_asciicompat(rb_enc_get(tmp))) { parse_mode_enc(RSTRING_PTR(tmp), &enc, &enc2, NULL); - ecflags = rb_econv_prepare_opts(opt, &ecopts); + ecflags = rb_econv_prepare_options(opt, &ecopts, ecflags); } else { rb_io_ext_int_to_encs(rb_to_encoding(v1), NULL, &enc, &enc2); - ecflags = 0; ecopts = Qnil; } } |