aboutsummaryrefslogtreecommitdiffstats
path: root/proc.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-14 14:02:33 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-14 14:02:33 +0000
commitd5ae92e8a40c033769b14e0885c00d178b415529 (patch)
tree92b56bb542054c36b41a0f4b8ae4bfb58b47319b /proc.c
parent54784728772eed185e0a946c82a352897049c540 (diff)
downloadruby-d5ae92e8a40c033769b14e0885c00d178b415529.tar.gz
proc.c: infect inspect result
* proc.c (method_inspect): the result should be infected by the object. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59083 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'proc.c')
-rw-r--r--proc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/proc.c b/proc.c
index 3ef812e1f1..ff130b637e 100644
--- a/proc.c
+++ b/proc.c
@@ -2524,6 +2524,7 @@ method_inspect(VALUE method)
TypedData_Get_Struct(method, struct METHOD, &method_data_type, data);
str = rb_str_buf_new2("#<");
+ OBJ_INFECT_RAW(str, method);
s = rb_obj_classname(method);
rb_str_buf_cat2(str, s);
rb_str_buf_cat2(str, ": ");