1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

2000-02-08

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@617 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2000-02-08 08:54:02 +00:00
parent 320e99d8dd
commit 7dd3853eac

12
hash.c
View file

@ -1217,12 +1217,6 @@ env_delete_if()
return envtbl;
}
static VALUE
env_reject()
{
return rb_hash_delete_if(env_to_hash());
}
static VALUE
env_to_s()
{
@ -1361,6 +1355,12 @@ env_to_hash()
return hash;
}
static VALUE
env_reject()
{
return rb_hash_delete_if(env_to_hash());
}
void
Init_Hash()
{