diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-03-24 00:04:43 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-03-24 00:04:43 +0000 |
commit | 61f50e317e3bfea90cf1b8e9ce8e4e6f704173a4 (patch) | |
tree | f09dde83fd6af61a346cf3715ff5a74b2d3573da /load.c | |
parent | 7a64cdeb5588ab8e00d4fdb15bcd4b228e6c21c7 (diff) | |
download | ruby-61f50e317e3bfea90cf1b8e9ce8e4e6f704173a4.tar.gz |
load.c: no longer used variable and object
* load.c (rb_feature_p): remvoe variable and string object which are
no longer used since r39874. [Bug #8048]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39898 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'load.c')
-rw-r--r-- | load.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -371,7 +371,7 @@ loaded_feature_path_i(st_data_t v, st_data_t b, st_data_t f) static int rb_feature_p(const char *feature, const char *ext, int rb, int expanded, const char **fn) { - VALUE features, feature_val, this_feature_index = Qnil, v, p, load_path = 0; + VALUE features, this_feature_index = Qnil, v, p, load_path = 0; const char *f, *e; long i, len, elen, n; st_table *loading_tbl, *features_index; @@ -392,7 +392,6 @@ rb_feature_p(const char *feature, const char *ext, int rb, int expanded, const c features = get_loaded_features(); features_index = get_loaded_features_index(); - feature_val = rb_str_new(feature, len); st_lookup(features_index, (st_data_t)feature, (st_data_t *)&this_feature_index); /* We search `features` for an entry such that either "#{features[i]}" == "#{load_path[j]}/#{feature}#{e}" |