diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-07-28 08:16:34 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-07-28 08:16:34 +0000 |
| commit | 20cf09e2c4da1eda1c53dc559a05127e5516594c (patch) | |
| tree | 2da9be66152ed2e30276db2ae65f3f4f17baeb42 | |
| parent | 2ecd4d7f5880f9454f9e1806bcd3e4019ae47fde (diff) | |
| download | ruby-20cf09e2c4da1eda1c53dc559a05127e5516594c.tar.gz ruby-20cf09e2c4da1eda1c53dc559a05127e5516594c.tar.xz ruby-20cf09e2c4da1eda1c53dc559a05127e5516594c.zip | |
* hash.c (each_i): typo fixed. [ruby-dev:26622]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8858 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | hash.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Thu Jul 28 17:14:01 2005 Yukihiro Matsumoto <matz@ruby-lang.org> + + * hash.c (each_i): typo fixed. [ruby-dev:26622] + Thu Jul 28 15:04:11 2005 Yukihiro Matsumoto <matz@ruby-lang.org> * parse.y (f_arg): better argument name duplication check @@ -1086,7 +1086,7 @@ each_i(key, value) VALUE key, value; { if (key == Qundef) return ST_CONTINUE; - rb_yield(rb_assoc(key, value)); + rb_yield(rb_assoc_new(key, value)); return ST_CONTINUE; } |
