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:
parent
320e99d8dd
commit
7dd3853eac
1 changed files with 6 additions and 6 deletions
12
hash.c
12
hash.c
|
@ -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()
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue