diff options
author | yui-knk <[email protected]> | 2024-04-22 22:12:43 +0900 |
---|---|---|
committer | Yuichiro Kaneko <[email protected]> | 2024-04-23 07:20:22 +0900 |
commit | c7d9376cb5d820bdca67823dbae5a5751ab6a6d5 () | |
tree | 174bff1ab70413ecbcceb30eebeb30de2ea01b31 /ruby_parser.c | |
parent | 2992e1074adf86ed6c06ba1750648a35d877001a (diff) |
Remove unused functions from `struct rb_parser_config_struct`
-rw-r--r-- | ruby_parser.c | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -349,7 +349,6 @@ enc_mbc_to_codepoint(const char *p, const char *e, void *enc) return ONIGENC_MBC_TO_CODE((rb_encoding *)enc, up, ue); } -VALUE rb_io_gets_internal(VALUE io); extern VALUE rb_eArgError; static const rb_parser_config_t rb_global_parser_config = { @@ -396,8 +395,6 @@ static const rb_parser_config_t rb_global_parser_config = { .str_catf = rb_str_catf, .str_cat_cstr = rb_str_cat_cstr, - .str_subseq = rb_str_subseq, - .str_new_frozen = rb_str_new_frozen, .str_modify = rb_str_modify, .str_set_len = rb_str_set_len, .str_cat = rb_str_cat, @@ -413,7 +410,6 @@ static const rb_parser_config_t rb_global_parser_config = { .rstring_ptr = RSTRING_PTR, .rstring_end = RSTRING_END, .rstring_len = RSTRING_LEN, - .filesystem_str_new_cstr = rb_filesystem_str_new_cstr, .obj_as_string = rb_obj_as_string, .int2num = rb_int2num_inline, @@ -423,7 +419,6 @@ static const rb_parser_config_t rb_global_parser_config = { .io_write = rb_io_write, .io_flush = rb_io_flush, .io_puts = rb_io_puts, - .io_gets_internal = rb_io_gets_internal, .debug_output_stdout = rb_ractor_stdout, .debug_output_stderr = rb_ractor_stderr, |