1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* eval.c (Init_Cont): separated from Init_Thread() since

rb_provide() must be after Init_Array().


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@21782 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-01-26 09:03:53 +00:00
parent 2dd66361f7
commit e02ba9dc4a
3 changed files with 20 additions and 9 deletions

View file

@ -16,6 +16,7 @@ void Init_Array _((void));
void Init_Bignum _((void));
void Init_Binding _((void));
void Init_Comparable _((void));
void Init_Cont _((void));
void Init_Dir _((void));
void Init_Enumerable _((void));
void Init_Enumerator _((void));
@ -76,6 +77,7 @@ rb_call_inits()
Init_signal();
Init_process();
Init_load();
Init_Cont();
Init_Proc();
Init_Binding();
Init_Math();