mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* variable.c (rb_autoload): [ruby-dev:25373]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7695 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
7cd5949e7c
commit
a25e8e5456
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Sat Jan 1 01:13:28 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* variable.c (rb_autoload): [ruby-dev:25373]
|
||||
|
||||
Fri Dec 31 14:10:43 2004 Dave Thomas <dave@pragprog.com>
|
||||
|
||||
* lib/rdoc/ri/ri_formatter.rb (RI::TextFormatter::display_flow_item): Fix problem
|
||||
|
|
|
@ -1289,7 +1289,7 @@ rb_autoload(mod, id, file)
|
|||
tbl = check_autoload_table(av);
|
||||
}
|
||||
else {
|
||||
av = Data_Wrap_Struct(rb_cData, rb_mark_tbl, st_free_table, 0);
|
||||
av = Data_Wrap_Struct(0, rb_mark_tbl, st_free_table, 0);
|
||||
st_add_direct(tbl, autoload, av);
|
||||
DATA_PTR(av) = tbl = st_init_numtable();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue