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

* hash.c (replace_i): ignore when key == Qundef.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1488 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2001-06-01 09:38:30 +00:00
parent d23012904a
commit ab9b733259
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Fri Jun 1 17:26:24 2001 K.Kosako <kosako@sofnec.co.jp>
* hash.c (replace_i): ignore when key == Qundef.
Fri Jun 1 11:21:04 2001 WATANABE Hirofumi <eban@ruby-lang.org>
* configure.in: use waitpid on mingw32.

5
hash.c
View file

@ -510,7 +510,10 @@ static int
replace_i(key, val, hash)
VALUE key, val, hash;
{
rb_hash_aset(hash, key, val);
if (key != Qundef) {
rb_hash_aset(hash, key, val);
}
return ST_CONTINUE;
}