From bbbea4394fb6ff5bc14187ca77f23f36cdddcf72 Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 13 Jun 2000 02:50:34 +0000 Subject: IO#seek segv git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@748 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io.c b/io.c index a35f306b2..61120908b 100644 --- a/io.c +++ b/io.c @@ -3317,7 +3317,7 @@ Init_IO() rb_define_method(rb_cIO, "<<", rb_io_addstr, 1); rb_define_method(rb_cIO, "flush", rb_io_flush, 0); rb_define_method(rb_cIO, "tell", rb_io_tell, 0); - rb_define_method(rb_cIO, "seek", rb_io_seek, 2); + rb_define_method(rb_cIO, "seek", rb_io_seek, -1); rb_define_const(rb_cIO, "SEEK_SET", INT2FIX(SEEK_SET)); rb_define_const(rb_cIO, "SEEK_CUR", INT2FIX(SEEK_CUR)); rb_define_const(rb_cIO, "SEEK_END", INT2FIX(SEEK_END)); -- cgit