mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* io.c: add parameter prototype.
* re.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2869 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
94e5dc3416
commit
50cc115b7e
3 changed files with 10 additions and 4 deletions
10
ChangeLog
10
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>
|
||||
|
||||
|
|
2
io.c
2
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;
|
||||
|
|
2
re.c
2
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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue