From 9952e9358ea73a1bda8d5f8c8672ee1c04892ce4 Mon Sep 17 00:00:00 2001 From: S-H-GAMELINKS Date: Tue, 6 Jul 2021 21:19:57 +0900 Subject: Refactor rb_str_export and rb_str_export_locale function's --- string.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'string.c') diff --git a/string.c b/string.c index 827bc8955f..864fcc8791 100644 --- a/string.c +++ b/string.c @@ -1180,13 +1180,13 @@ rb_filesystem_str_new_cstr(const char *ptr) VALUE rb_str_export(VALUE str) { - return rb_str_conv_enc(str, STR_ENC_GET(str), rb_default_external_encoding()); + return rb_str_export_to_enc(str, rb_default_external_encoding()); } VALUE rb_str_export_locale(VALUE str) { - return rb_str_conv_enc(str, STR_ENC_GET(str), rb_locale_encoding()); + return rb_str_export_to_enc(str, rb_locale_encoding()); } VALUE -- cgit v1.2.3