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

* variable.c (rb_autoload): hide internal data from ruby level.

fixed: [ruby-dev:25373]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7761 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2005-01-10 14:07:53 +00:00
parent 083475a1f3
commit 60e9c4e62a
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Mon Jan 10 23:07:45 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
* variable.c (rb_autoload): hide internal data from ruby level.
fixed: [ruby-dev:25373]
Mon Jan 10 15:28:51 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
* lib/webrick/cgi.rb (WEBrick::CGI::Socket#request_line): should

View file

@ -1293,6 +1293,7 @@ rb_autoload(mod, id, file)
}
else {
av = Data_Wrap_Struct(rb_cData, rb_mark_tbl, st_free_table, 0);
RBASIC(av)->klass = 0;
st_add_direct(tbl, autoload, av);
DATA_PTR(av) = tbl = st_init_numtable();
}