From 0127e67a38f0103dffdaedef5d785920861f25e8 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 16 Aug 2008 00:20:31 +0000 Subject: * 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 --- marshal.c | 1 + 1 file changed, 1 insertion(+) (limited to 'marshal.c') diff --git a/marshal.c b/marshal.c index 1ed67ad3b..0909addc8 100644 --- a/marshal.c +++ b/marshal.c @@ -1689,6 +1689,7 @@ void Init_marshal(void) { #undef rb_intern +#define rb_intern(str) rb_intern_const(str) VALUE rb_mMarshal = rb_define_module("Marshal"); -- cgit