summaryrefslogtreecommitdiffstats
path: root/range.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-16 00:20:31 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-16 00:20:31 +0000
commit0127e67a38f0103dffdaedef5d785920861f25e8 (patch)
tree2fc7030b51f956700741175f7ed5030e6d827d08 /range.c
parent3a78bb3062f83fab58d16d035dfa2030eb21bccf (diff)
downloadruby-0127e67a38f0103dffdaedef5d785920861f25e8.tar.gz
ruby-0127e67a38f0103dffdaedef5d785920861f25e8.tar.xz
ruby-0127e67a38f0103dffdaedef5d785920861f25e8.zip
* include/ruby/ruby.h (rb_intern_const): tiny optimization.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18653 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'range.c')
-rw-r--r--range.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/range.c b/range.c
index 3b19a2b33..bbf983055 100644
--- a/range.c
+++ b/range.c
@@ -897,6 +897,7 @@ void
Init_Range(void)
{
#undef rb_intern
+#define rb_intern(str) rb_intern_const(str)
id_cmp = rb_intern("<=>");
id_succ = rb_intern("succ");