From 1788d08d257060e6187817290d604d7da2f1ea65 Mon Sep 17 00:00:00 2001 From: zzak Date: Sat, 26 Jul 2014 16:47:27 +0000 Subject: [PATCH] * proc.c (method_super_method): [DOC] Method#super_method git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46965 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ proc.c | 3 +++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index ffa5bee9fe..c60be0e434 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sun Jul 27 01:46:34 2014 Zachary Scott + + * proc.c (method_super_method): [DOC] Method#super_method + Sun Jul 27 01:22:39 2014 Nobuyoshi Nakada * proc.c (method_super_method): new method Method#super_method, diff --git a/proc.c b/proc.c index 5e5705214e..a98bc4b471 100644 --- a/proc.c +++ b/proc.c @@ -2422,6 +2422,9 @@ method_proc(VALUE method) return procval; } +/* + * Returns a Method of superclass, which would be called when super is used. + */ static VALUE method_super_method(VALUE method) {