mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* enumerator.c, include/ruby/ruby.h: Export rb_cEnumerator.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16107 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3537b97bc1
commit
d657d4feb3
3 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Sun Apr 20 21:00:21 2008 Akinori MUSHA <knu@iDaemons.org>
|
||||
|
||||
* enumerator.c, include/ruby/ruby.h: Export rb_cEnumerator.
|
||||
|
||||
Sun Apr 20 20:47:50 2008 Akinori MUSHA <knu@iDaemons.org>
|
||||
|
||||
* enumerator.c: Resolve the method every time an enumeration
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
* A class which provides a method `each' to be used as an Enumerable
|
||||
* object.
|
||||
*/
|
||||
static VALUE rb_cEnumerator;
|
||||
VALUE rb_cEnumerator;
|
||||
static VALUE sym_each;
|
||||
|
||||
VALUE rb_eStopIteration;
|
||||
|
|
|
@ -854,6 +854,7 @@ RUBY_EXTERN VALUE rb_cCont;
|
|||
RUBY_EXTERN VALUE rb_cDir;
|
||||
RUBY_EXTERN VALUE rb_cData;
|
||||
RUBY_EXTERN VALUE rb_cFalseClass;
|
||||
RUBY_EXTERN VALUE rb_cEnumerator;
|
||||
RUBY_EXTERN VALUE rb_cFile;
|
||||
RUBY_EXTERN VALUE rb_cFixnum;
|
||||
RUBY_EXTERN VALUE rb_cFloat;
|
||||
|
|
Loading…
Reference in a new issue