summaryrefslogtreecommitdiff
path: root/variable.c
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-22 13:09:37 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-22 13:09:37 +0000
commitb8cc476ce9a3e931fb474ee83e8ae147bcd9c86e (patch)
tree7e4873181f0b7e90bb83cdd79d0753f092b134eb /variable.c
parent4f03a239dcd6704e4ae7a7029dc6b31d579e9f7c (diff)
use predefined IDs
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62008 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'variable.c')
-rw-r--r--variable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/variable.c b/variable.c
index 3e37bc2f72..3f9725a065 100644
--- a/variable.c
+++ b/variable.c
@@ -1748,7 +1748,7 @@ uninitialized_constant(VALUE klass, VALUE name)
VALUE
rb_const_missing(VALUE klass, VALUE name)
{
- VALUE value = rb_funcallv(klass, rb_intern("const_missing"), 1, &name);
+ VALUE value = rb_funcallv(klass, idConst_missing, 1, &name);
rb_vm_inc_const_missing_count();
return value;
}