aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-25 08:37:27 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-25 08:37:27 +0000
commit7bba6adc56b20606101131069ef8f1f96ff71fa2 (patch)
tree646d41e4bd0aa551fbd7b57df76cd316756307c9 /ChangeLog
parentf4d71ad509c929444c43f37befc0f14571cec797 (diff)
downloadruby-7bba6adc56b20606101131069ef8f1f96ff71fa2.tar.gz
* vm_method.c (rb_method_entry_create): need to call
method_definition_reset() if def is given. Actually, `me' is a new object, so we don't need to call it. It is just to make sure. * vm_method.c (method_definition_reset): remove duplicated insertion. * vm_method.c (rb_method_entry_clone): assgine dst->def here, not in method_definition_reset(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51027 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog13
1 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c8c8093933..7885c0685b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+Thu Jun 25 17:32:33 2015 Koichi Sasada <ko1@atdot.net>
+
+ * vm_method.c (rb_method_entry_create): need to call
+ method_definition_reset() if def is given.
+
+ Actually, `me' is a new object, so we don't need to call it.
+ It is just to make sure.
+
+ * vm_method.c (method_definition_reset): remove duplicated insertion.
+
+ * vm_method.c (rb_method_entry_clone): assgine dst->def here,
+ not in method_definition_reset().
+
Thu Jun 25 16:44:54 2015 Koichi Sasada <ko1@atdot.net>
* vm_method.c: make a rb_method_definition_t data (def) *after* making