Use rb_mod_name instead of classname

classname() is static function.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56801 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2016-11-15 12:42:04 +00:00
parent af36e316d7
commit ed83af606a
1 changed files with 1 additions and 2 deletions

View File

@ -875,8 +875,7 @@ end
define rb_classname
# up to 128bit int
set $rb_classname_permanent = "0123456789ABCDEF"
set $rb_classname = classname($arg0, $rb_classname_permanent)
set $rb_classname = rb_mod_name($arg0)
if $rb_classname != RUBY_Qnil
rp $rb_classname
else