From 50cb050bd7fb61b0316eac608f69a29479b8fc60 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: svn+ssh://ci.ruby-lang.org/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 a35f306b25..61120908b3 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 v1.2.3