зеркало из https://github.com/github/ruby.git
Init functions should have prefix to avoid confliction.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60990 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
1b055cffbc
Коммит
436fd82ab7
|
@ -11,7 +11,7 @@ bug_str_capacity(VALUE klass, VALUE str)
|
|||
}
|
||||
|
||||
void
|
||||
Init_capacity(VALUE klass)
|
||||
Init_string_capacity(VALUE klass)
|
||||
{
|
||||
rb_define_singleton_method(klass, "capacity", bug_str_capacity, 1);
|
||||
}
|
||||
|
|
|
@ -36,7 +36,7 @@ str_coderange_scan(VALUE str)
|
|||
}
|
||||
|
||||
void
|
||||
Init_coderange(VALUE klass)
|
||||
Init_string_coderange(VALUE klass)
|
||||
{
|
||||
sym_7bit = ID2SYM(rb_intern("7bit"));
|
||||
sym_valid = ID2SYM(rb_intern("valid"));
|
||||
|
|
|
@ -131,7 +131,7 @@ bug_str_s_rb_str_new_frozen(VALUE self, VALUE str)
|
|||
}
|
||||
|
||||
void
|
||||
Init_cstr(VALUE klass)
|
||||
Init_string_cstr(VALUE klass)
|
||||
{
|
||||
rb_define_method(klass, "cstr_term", bug_str_cstr_term, 0);
|
||||
rb_define_method(klass, "cstr_unterm", bug_str_cstr_unterm, 1);
|
||||
|
|
|
@ -7,7 +7,7 @@ bug_str_ellipsize(VALUE str, VALUE len)
|
|||
}
|
||||
|
||||
void
|
||||
Init_ellipsize(VALUE klass)
|
||||
Init_string_ellipsize(VALUE klass)
|
||||
{
|
||||
rb_define_method(klass, "ellipsize", bug_str_ellipsize, 1);
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@ bug_str_encoding_index(VALUE self, VALUE str)
|
|||
}
|
||||
|
||||
void
|
||||
Init_enc_associate(VALUE klass)
|
||||
Init_string_enc_associate(VALUE klass)
|
||||
{
|
||||
rb_define_method(klass, "associate_encoding!", bug_str_enc_associate, 1);
|
||||
rb_define_singleton_method(klass, "encoding_index", bug_str_encoding_index, 1);
|
||||
|
|
|
@ -8,7 +8,7 @@ enc_str_buf_cat(VALUE str, VALUE str2)
|
|||
}
|
||||
|
||||
void
|
||||
Init_enc_str_buf_cat(VALUE klass)
|
||||
Init_string_enc_str_buf_cat(VALUE klass)
|
||||
{
|
||||
rb_define_method(klass, "enc_str_buf_cat", enc_str_buf_cat, 1);
|
||||
}
|
||||
|
|
|
@ -9,7 +9,7 @@ bug_s_fstring(VALUE self, VALUE str)
|
|||
}
|
||||
|
||||
void
|
||||
Init_fstring(VALUE klass)
|
||||
Init_string_fstring(VALUE klass)
|
||||
{
|
||||
rb_define_singleton_method(klass, "fstring", bug_s_fstring, 1);
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "ruby.h"
|
||||
|
||||
#define init(n) {void Init_##n(VALUE klass); Init_##n(klass);}
|
||||
#define init(n) {void Init_string_##n(VALUE klass); Init_string_##n(klass);}
|
||||
|
||||
void
|
||||
Init_string(void)
|
||||
|
|
|
@ -15,7 +15,7 @@ bug_str_modify_expand(VALUE str, VALUE expand)
|
|||
}
|
||||
|
||||
void
|
||||
Init_modify(VALUE klass)
|
||||
Init_string_modify(VALUE klass)
|
||||
{
|
||||
rb_define_method(klass, "modify!", bug_str_modify, 0);
|
||||
rb_define_method(klass, "modify_expand!", bug_str_modify_expand, 1);
|
||||
|
|
|
@ -14,7 +14,7 @@ bug_external_str_new(VALUE self, VALUE len, VALUE enc)
|
|||
}
|
||||
|
||||
void
|
||||
Init_new(VALUE klass)
|
||||
Init_string_new(VALUE klass)
|
||||
{
|
||||
rb_define_singleton_method(klass, "buf_new", bug_str_buf_new, 1);
|
||||
rb_define_singleton_method(klass, "external_new", bug_external_str_new, 2);
|
||||
|
|
|
@ -7,7 +7,7 @@ bug_str_nofree(VALUE self)
|
|||
}
|
||||
|
||||
void
|
||||
Init_nofree(VALUE klass)
|
||||
Init_string_nofree(VALUE klass)
|
||||
{
|
||||
rb_define_singleton_method(klass, "nofree", bug_str_nofree, 0);
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@ normalize_ospath(VALUE str)
|
|||
#endif
|
||||
|
||||
void
|
||||
Init_normalize(VALUE klass)
|
||||
Init_string_normalize(VALUE klass)
|
||||
{
|
||||
rb_define_method(klass, "normalize_ospath", normalize_ospath, 0);
|
||||
}
|
||||
|
|
|
@ -55,7 +55,7 @@ bug_str_qsort_bang(int argc, VALUE *argv, VALUE str)
|
|||
}
|
||||
|
||||
void
|
||||
Init_qsort(VALUE klass)
|
||||
Init_string_qsort(VALUE klass)
|
||||
{
|
||||
rb_define_method(klass, "qsort!", bug_str_qsort_bang, -1);
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@ bug_str_set_len(VALUE str, VALUE len)
|
|||
}
|
||||
|
||||
void
|
||||
Init_set_len(VALUE klass)
|
||||
Init_string_set_len(VALUE klass)
|
||||
{
|
||||
rb_define_method(klass, "set_len", bug_str_set_len, 1);
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "ruby.h"
|
||||
|
||||
#define init(n) {void Init_##n(VALUE klass); Init_##n(klass);}
|
||||
#define init(n) {void Init_time_##n(VALUE klass); Init_time_##n(klass);}
|
||||
|
||||
void
|
||||
Init_time(void)
|
||||
|
|
|
@ -26,7 +26,7 @@ bug_time_s_timespec_now(VALUE klass)
|
|||
}
|
||||
|
||||
void
|
||||
Init_new(VALUE klass)
|
||||
Init_time_new(VALUE klass)
|
||||
{
|
||||
rb_define_singleton_method(klass, "nano_new", bug_time_s_nano_new, 2);
|
||||
rb_define_singleton_method(klass, "timespec_new", bug_time_s_timespec_new, 3);
|
||||
|
|
Загрузка…
Ссылка в новой задаче