diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-06-09 09:25:32 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-06-09 09:25:32 +0000 |
| commit | a37463ef14409c81422b3c3d6c35a0dbd21f51b7 (patch) | |
| tree | 294dcb47e83e5480b1fa992aba8a4b4025c8a626 /string.c | |
| parent | 32a51c5c95dde9e78161cccc9e75303a5523540b (diff) | |
| download | ruby-a37463ef14409c81422b3c3d6c35a0dbd21f51b7.tar.gz ruby-a37463ef14409c81422b3c3d6c35a0dbd21f51b7.tar.xz ruby-a37463ef14409c81422b3c3d6c35a0dbd21f51b7.zip | |
* include/ruby/ruby.h (CONST_ID): constant ID cache for non-gcc.
* *.c: no cache in init functions.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@17053 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
| -rw-r--r-- | string.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2632,7 +2632,7 @@ rb_str_upto(int argc, VALUE *argv, VALUE beg) rb_scan_args(argc, argv, "11", &end, &exclusive); excl = RTEST(exclusive); - succ = rb_intern("succ"); + CONST_ID(succ, "succ"); StringValue(end); enc = rb_enc_check(beg, end); if (RSTRING_LEN(beg) == 1 && RSTRING_LEN(end) == 1 && @@ -6526,6 +6526,8 @@ rb_to_id(VALUE name) void Init_String(void) { +#undef rb_intern + rb_cString = rb_define_class("String", rb_cObject); rb_include_module(rb_cString, rb_mComparable); rb_define_alloc_func(rb_cString, str_alloc); |
