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

* inits.c (rb_call_inits): change initializing order.

[ruby-dev:31420]



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12942 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2007-08-15 07:50:11 +00:00
parent 758c51cafe
commit 0aecfb0439
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Wed Aug 15 16:49:04 2007 Koichi Sasada <ko1@atdot.net>
* inits.c (rb_call_inits): change initializing order.
[ruby-dev:31420]
Wed Aug 15 16:44:15 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* io.c (ARGF_FORWARD): wrongly compares with current_file with

View file

@ -63,10 +63,10 @@ rb_call_inits()
Init_Comparable();
Init_Enumerable();
Init_Precision();
Init_String();
Init_Exception();
Init_eval();
Init_jump();
Init_String();
Init_Numeric();
Init_Bignum();
Init_syserr();