mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
Use rb_str_to_interned_str in parse.y
This commit changes rb_fstring to rb_str_to_interned_str in parse.y. rb_fstring is private so it shouldn't be used by ripper.
This commit is contained in:
parent
9a09e27a73
commit
01f9b2ae41
4 changed files with 7 additions and 7 deletions
|
@ -533,7 +533,7 @@ static const rb_parser_config_t rb_global_parser_config = {
|
|||
.str_resize = rb_str_resize,
|
||||
.str_new = rb_str_new,
|
||||
.str_new_cstr = rb_str_new_cstr,
|
||||
.fstring = rb_fstring,
|
||||
.str_to_interned_str = rb_str_to_interned_str,
|
||||
.is_ascii_string = is_ascii_string2,
|
||||
.enc_str_new = enc_str_new,
|
||||
.enc_str_buf_cat = enc_str_buf_cat,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue