summaryrefslogtreecommitdiff
path: root/enumerator.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-04 15:09:03 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-04 15:09:03 +0000
commitc83d6db61bccd8a32f1ba523a47e60012c439bda (patch)
treeedd70b428443dc39a9971ac5140a654239a16a34 /enumerator.c
parent4fd5436b328f1662f68614507943ae7eb8acd5a9 (diff)
* enumerator.c (Init_Enumerator): provided features should have
extensions. * eval.c (rb_feature_p): returns type of the feature instead of extension. * eval.c (search_required): ruby library should be prior to statically linked extentions. fixed: [ruby-dev:26711] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8913 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enumerator.c')
-rw-r--r--enumerator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/enumerator.c b/enumerator.c
index d1cbd76b64..c5bb86dd2f 100644
--- a/enumerator.c
+++ b/enumerator.c
@@ -426,5 +426,5 @@ Init_Enumerator()
sym_each_slice = ID2SYM(rb_intern("each_slice"));
sym_each_cons = ID2SYM(rb_intern("each_cons"));
- rb_provide("enumerator"); /* for backward compatibility */
+ rb_provide("enumerator.so"); /* for backward compatibility */
}