summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-25 08:36:46 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-25 08:36:46 +0000
commitce60bbc8519465a125f975f4169f0bb644fcadf3 (patch)
tree63e3c3a02457640466320791edac1a0b5cc19e42 /io.c
parent10906176b4dea0444588fba36b98f4b144a25775 (diff)
* include/ruby/intern.h (rb_io_ungetbyte): added prototype.
* io.c (rb_io_gets): use rb_io_getline_1 for unget buffer. * ruby.c (load_file): use rb_io_ungetbyte. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18832 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/io.c b/io.c
index 9e919c0759..6ca2f71f59 100644
--- a/io.c
+++ b/io.c
@@ -2213,11 +2213,7 @@ rb_io_getline(int argc, VALUE *argv, VALUE io)
VALUE
rb_io_gets(VALUE io)
{
- rb_io_t *fptr;
-
- GetOpenFile(io, fptr);
- rb_io_check_readable(fptr);
- return rb_io_getline_fast(fptr, io_read_encoding(fptr));
+ return rb_io_getline_1(rb_default_rs, -1, io);
}
/*