diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-13 10:28:06 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-13 10:28:06 +0000 |
commit | 4dcf54aea12d3006cd171dbe62cc4e80cde74960 (patch) | |
tree | 06a21322ee08f488d4b8d684769806a05b85b01a /io.c | |
parent | 0a3fc5be05c3f19eaa637628c20ab49640ae1faf (diff) | |
download | ruby-4dcf54aea12d3006cd171dbe62cc4e80cde74960.tar.gz |
* io.c (io_encoding_set): don't need argc argument.
(rb_io_s_pipe): update io_encoding_set call.
(rb_io_set_encoding): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19327 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r-- | io.c | 12 |
1 files changed, 5 insertions, 7 deletions
@@ -6629,20 +6629,18 @@ io_new_instance(VALUE args) } static void -io_encoding_set(rb_io_t *fptr, int argc, VALUE v1, VALUE v2, VALUE opt) +io_encoding_set(rb_io_t *fptr, VALUE v1, VALUE v2, VALUE opt) { rb_encoding *enc, *enc2; int ecflags; VALUE ecopts; - if (NIL_P(v2)) argc = 1; - - if (argc == 2) { + if (!NIL_P(v2)) { enc2 = rb_to_encoding(v1); enc = rb_to_encoding(v2); ecflags = rb_econv_prepare_opts(opt, &ecopts); } - else if (argc == 1) { + else { if (NIL_P(v1)) { enc = NULL; enc2 = NULL; @@ -6750,7 +6748,7 @@ rb_io_s_pipe(int argc, VALUE *argv, VALUE klass) rb_jump_tag(state); } GetOpenFile(r, fptr); - io_encoding_set(fptr, argc, v1, v2, opt); + io_encoding_set(fptr, v1, v2, opt); args[1] = INT2NUM(pipes[1]); args[2] = INT2FIX(O_WRONLY); w = rb_protect(io_new_instance, (VALUE)args, &state); @@ -7574,7 +7572,7 @@ rb_io_set_encoding(int argc, VALUE *argv, VALUE io) opt = pop_last_hash(&argc, &argv); rb_scan_args(argc, argv, "11", &v1, &v2); GetOpenFile(io, fptr); - io_encoding_set(fptr, argc, v1, v2, opt); + io_encoding_set(fptr, v1, v2, opt); return io; } |