From 8929d928116ceb4ebae08f7e6273e7d0d7e59053 Mon Sep 17 00:00:00 2001 From: aamine Date: Mon, 16 Sep 2002 15:56:31 +0000 Subject: * io.c: add parameter prototype. * re.c: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2869 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 10 ++++++++-- io.c | 2 +- re.c | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1c67a92bd..21b35cfb7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,13 @@ +Tue Sep 17 00:58:35 2002 Minero Aoki + + * io.c: add parameter prototype. + + * re.c: ditto. + Sun Sep 15 21:14:22 2002 KONISHI Hiromasa - * win32/win32.c (rb_w32_opendir): Corresponds to the unjust path containing ". - (rb_w32_stat) : ditto. + * win32/win32.c (rb_w32_opendir, rb_w32_stat): Corresponds to + the unjust path containing ". Sun Sep 15 19:48:55 2002 WATANABE Hirofumi diff --git a/io.c b/io.c index e6c873604..083c8e952 100644 --- a/io.c +++ b/io.c @@ -2329,7 +2329,7 @@ rb_io_reopen(argc, argv, file) static VALUE rb_io_become(clone, io) - VALUE io; + VALUE clone, io; { OpenFile *fptr, *orig; int fd; diff --git a/re.c b/re.c index 019e4de09..366387b6a 100644 --- a/re.c +++ b/re.c @@ -1327,7 +1327,7 @@ rb_reg_options(re) static VALUE rb_reg_become(copy, re) - VALUE re; + VALUE copy, re; { if (copy == re) return copy; rb_check_frozen(copy); -- cgit