summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-09-16 15:56:31 +0000
committeraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-09-16 15:56:31 +0000
commit8929d928116ceb4ebae08f7e6273e7d0d7e59053 (patch)
tree31a9d7f534a99a4f0fc9f18b93374787d50dde89
parentcc698549690241f9ead2722ec5216e511c33f338 (diff)
downloadruby-8929d928116ceb4ebae08f7e6273e7d0d7e59053.tar.gz
ruby-8929d928116ceb4ebae08f7e6273e7d0d7e59053.tar.xz
ruby-8929d928116ceb4ebae08f7e6273e7d0d7e59053.zip
* 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
-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 1c67a92bd..21b35cfb7 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 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);