From c06c77091bcdc7e4aff08b0d1d23c41d119491bb Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 5 Sep 2009 23:11:03 +0000 Subject: [PATCH] * io.c (argf_next_argv): fixed indent. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24766 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- io.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/io.c b/io.c index eaaf7e6f97..e17b9eaf8a 100644 --- a/io.c +++ b/io.c @@ -6715,7 +6715,7 @@ argf_next_argv(VALUE argf) } ARGF.current_file = prep_io(fr, FMODE_READABLE, rb_cFile, fn); } - if (ARGF.binmode) rb_io_ascii8bit_binmode(ARGF.current_file); + if (ARGF.binmode) rb_io_ascii8bit_binmode(ARGF.current_file); if (ARGF.encs.enc) { rb_io_t *fptr; @@ -9788,7 +9788,7 @@ Init_IO(void) /* * Hack to get rdoc to regard ARGF as a class: * rb_cARGF = rb_define_class("ARGF", rb_cObject); - * */ + */ rb_cARGF = rb_class_new(rb_cObject); rb_set_class_path(rb_cARGF, rb_cObject, "ARGF.class"); rb_define_alloc_func(rb_cARGF, argf_alloc);