summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-28 03:15:53 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-28 03:15:53 +0000
commit6044991077bb1b9108f251bc71083acb22b0842b (patch)
tree64403c62574757613737126e6bae3f75d85dce8c
parented89a3bb20eafd6a564929833e6a4134ad84fdf0 (diff)
downloadruby-6044991077bb1b9108f251bc71083acb22b0842b.tar.gz
ruby-6044991077bb1b9108f251bc71083acb22b0842b.tar.xz
ruby-6044991077bb1b9108f251bc71083acb22b0842b.zip
missing changelog entries added for r25128.
* method.h (enum): new method type VM_METHOD_TYPE_MISSING. * vm_eval.c (vm_call0): invoking VM_METHOD_TYPE_MISSING method objects. * vm_insnhelper.c (vm_call_method): invoking method defined from VM_METHOD_TYPE_MISSING. * proc.c (rb_method_entry_arity): ditto. * vm_method.c (rb_method_entry_eq): two method object wraps method_missing with same symbol should be equal. [ruby-core:25755] * proc.c (mnew): should always return method object. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25130 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog18
1 files changed, 18 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 52cbe4ea6..bd18df139 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,21 @@
+Mon Sep 28 12:13:15 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * method.h (enum): new method type VM_METHOD_TYPE_MISSING.
+
+ * vm_eval.c (vm_call0): invoking VM_METHOD_TYPE_MISSING method
+ objects.
+
+ * vm_insnhelper.c (vm_call_method): invoking method defined from
+ VM_METHOD_TYPE_MISSING.
+
+ * proc.c (rb_method_entry_arity): ditto.
+
+ * vm_method.c (rb_method_entry_eq): two method object wraps
+ method_missing with same symbol should be equal.
+ [ruby-core:25755]
+
+ * proc.c (mnew): should always return method object.
+
Mon Sep 28 11:38:07 2009 NAKAMURA Usaku <usa@ruby-lang.org>
* parse.y (parser_tokadd_string): the byte after ``\'' may be a part of