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 /file.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 'file.c')
| -rw-r--r-- | file.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -102,15 +102,14 @@ static VALUE rb_get_path_check(VALUE obj, int check) { VALUE tmp; - static ID to_path; + ID to_path; if (check) rb_check_safe_obj(obj); tmp = rb_check_string_type(obj); if (!NIL_P(tmp)) goto exit; - if (!to_path) { - to_path = rb_intern("to_path"); - } + + CONST_ID(to_path, "to_path"); if (rb_respond_to(obj, to_path)) { tmp = rb_funcall(obj, to_path, 0, 0); } |
