summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-23 21:55:46 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-23 21:55:46 +0000
commit3537afda471cb29cc07d68c46dbe0f8f7a4577a4 (patch)
tree089e877376c6268a1590761d3583ce318ff5a238 /io.c
parente441b922b983bfab59b9f7512a2dae32d9e9e555 (diff)
* io.c (rb_io_print): no special handling for nil as well as puts.
fixed: [ruby-dev:29586] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11003 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c13
1 files changed, 3 insertions, 10 deletions
diff --git a/io.c b/io.c
index afd80af70c..342fb5697a 100644
--- a/io.c
+++ b/io.c
@@ -3689,19 +3689,12 @@ rb_io_print(int argc, VALUE *argv, VALUE out)
argv = &line;
}
for (i=0; i<argc; i++) {
- if (!NIL_P(rb_output_fs) && i>0) {
+ rb_io_write(out, argv[i]);
+ if (!NIL_P(rb_output_fs)) {
rb_io_write(out, rb_output_fs);
}
- switch (TYPE(argv[i])) {
- case T_NIL:
- rb_io_write(out, rb_str_new2("nil"));
- break;
- default:
- rb_io_write(out, argv[i]);
- break;
- }
}
- if (!NIL_P(rb_output_rs)) {
+ if (argc > 0 && !NIL_P(rb_output_rs)) {
rb_io_write(out, rb_output_rs);
}