* parse.y (ivar2_hash_type): disabled for now.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24592 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-08-20 03:09:08 +00:00
Родитель ec5e3c551d
Коммит 4a7cf7638c
2 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Thu Aug 20 12:09:01 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* parse.y (ivar2_hash_type): disabled for now.
Thu Aug 20 08:39:50 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
* thread.c (rb_thread_terminate_all): do not ignore interrupt when

Просмотреть файл

@ -9152,8 +9152,10 @@ static struct symbols {
ID last_id;
st_table *sym_id;
st_table *id_str;
#if ENABLE_SELECTOR_NAMESPACE
st_table *ivar2_id;
st_table *id_ivar2;
#endif
VALUE op_sym[tLAST_TOKEN];
} global_symbols = {tLAST_ID};
@ -9162,6 +9164,7 @@ static const struct st_hash_type symhash = {
rb_str_hash,
};
#if ENABLE_SELECTOR_NAMESPACE
struct ivar2_key {
ID id;
VALUE klass;
@ -9186,14 +9189,17 @@ static const struct st_hash_type ivar2_hash_type = {
ivar2_cmp,
ivar2_hash,
};
#endif
void
Init_sym(void)
{
global_symbols.sym_id = st_init_table_with_size(&symhash, 1000);
global_symbols.id_str = st_init_numtable_with_size(1000);
#if ENABLE_SELECTOR_NAMESPACE
global_symbols.ivar2_id = st_init_table_with_size(&ivar2_hash_type, 1000);
global_symbols.id_ivar2 = st_init_numtable_with_size(1000);
#endif
Init_id();
}