aboutsummaryrefslogtreecommitdiffstats
path: root/object.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-06 23:03:54 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-06 23:03:54 +0000
commit973f84ef558b6869ecc1e017cbe48b197726c7bf (patch)
tree9dfc10ab071511f39e5e201a315a42fdadf5edeb /object.c
parent3a94b881b9cf9464b36a2b60e969f8161f0da921 (diff)
downloadruby-973f84ef558b6869ecc1e017cbe48b197726c7bf.tar.gz
Show the class of the receiver [Feature #15231]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66261 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'object.c')
-rw-r--r--object.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/object.c b/object.c
index 5fa5322811..86a852c588 100644
--- a/object.c
+++ b/object.c
@@ -1686,7 +1686,8 @@ rb_false(VALUE obj)
static VALUE
rb_obj_match(VALUE obj1, VALUE obj2)
{
- rb_warning("Object#=~ is deprecated; it always returns nil");
+ rb_warning("deprecated Object#=~ is called on %"PRIsVALUE
+ "; it always returns nil", rb_obj_class(obj1));
return Qnil;
}