From d1a2837eec29ffcae5088b58a72d91dff3bf9f17 Mon Sep 17 00:00:00 2001 From: eban Date: Mon, 19 Jan 2004 16:33:30 +0000 Subject: * io.c (lineno): typo fix(FIX2INT -> INT2FIX). git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5507 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ io.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f61052e16..a2038c1a6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Jan 20 01:31:36 2004 WATANABE Hirofumi + + * io.c (lineno): typo fix(FIX2INT -> INT2FIX). + Mon Jan 19 21:53:38 2004 akira yamada * io.c, re.c, string.c, time.c: fixed up positions of RDocs. diff --git a/io.c b/io.c index b75c30658..b68c75086 100644 --- a/io.c +++ b/io.c @@ -114,7 +114,7 @@ struct timeval rb_time_interval _((VALUE)); static VALUE filename, current_file; static int gets_lineno; static int init_p = 0, next_p = 0; -static VALUE lineno = FIX2INT(0); +static VALUE lineno = INT2FIX(0); #ifdef _STDIO_USES_IOSTREAM /* GNU libc */ # ifdef _IO_fpos_t -- cgit