* 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:
parent
083475a1f3
commit
60e9c4e62a
@ -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>
|
Mon Jan 10 15:28:51 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
||||||
|
|
||||||
* lib/webrick/cgi.rb (WEBrick::CGI::Socket#request_line): should
|
* lib/webrick/cgi.rb (WEBrick::CGI::Socket#request_line): should
|
||||||
|
@ -1293,6 +1293,7 @@ rb_autoload(mod, id, file)
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
av = Data_Wrap_Struct(rb_cData, rb_mark_tbl, st_free_table, 0);
|
av = Data_Wrap_Struct(rb_cData, rb_mark_tbl, st_free_table, 0);
|
||||||
|
RBASIC(av)->klass = 0;
|
||||||
st_add_direct(tbl, autoload, av);
|
st_add_direct(tbl, autoload, av);
|
||||||
DATA_PTR(av) = tbl = st_init_numtable();
|
DATA_PTR(av) = tbl = st_init_numtable();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user