summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog10
-rw-r--r--io.c2
-rw-r--r--re.c2
3 files changed, 10 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 1c67a92bda..21b35cfb74 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,13 @@
+Tue Sep 17 00:58:35 2002 Minero Aoki <aamine@loveruby.net>
+
+ * io.c: add parameter prototype.
+
+ * re.c: ditto.
+
Sun Sep 15 21:14:22 2002 KONISHI Hiromasa <konishih@fd6.so-net.ne.jp>
- * 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 <eban@ruby-lang.org>
diff --git a/io.c b/io.c
index e6c873604d..083c8e952c 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 019e4de09f..366387b6ac 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);