aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-15 13:21:38 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-15 13:21:38 +0000
commite7d29c6cdadbb08d39219a05d795fe6c38414e19 (patch)
tree158ca07b9a2bbe70ec90d308329f9cbd13fd55c7 /ChangeLog
parentca5739979dc932e809cb70d243ecc07d380d2725 (diff)
downloadruby-e7d29c6cdadbb08d39219a05d795fe6c38414e19.tar.gz
hash.c: iteration level with reentering
* hash.c (hash_foreach_iter, hash_foreach_ensure, rb_hash_foreach): deal with iteration level when reentering by callcc. temporary measure until rollback of ensure is introduced. [ruby-dev:47807] [Bug #9105] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43683 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 17bf1a3d46..19711c55d1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Fri Nov 15 22:21:34 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * hash.c (hash_foreach_iter, hash_foreach_ensure, rb_hash_foreach):
+ deal with iteration level when reentering by callcc. temporary
+ measure until rollback of ensure is introduced. [ruby-dev:47807]
+ [Bug #9105]
+
Fri Nov 15 17:07:31 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/delegate.rb (Delegator#send): override to get rid of global function interference.