diff options
author | Kenta Murata <[email protected]> | 2020-12-08 02:09:53 +0900 |
---|---|---|
committer | Kenta Murata <[email protected]> | 2020-12-08 02:10:03 +0900 |
commit | 146b3695c0e1ea0d6cf00442d5524f97d8a75296 (patch) | |
tree | ae86a990949b2e20388db1afd970ec3438fbf3cd | |
parent | 7e69296a2be8db8814aa0cd0ce6471b80d55b464 (diff) |
ruby.c: remove needless substitution of uenc
uenc has already been initialized the top of the function.
-rw-r--r-- | ruby.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -1819,9 +1819,6 @@ process_options(int argc, char **argv, ruby_cmdline_options_t *opt) Init_ruby_description(); Init_enc(); lenc = rb_locale_encoding(); -#if UTF8_PATH - uenc = rb_utf8_encoding(); -#endif rb_enc_associate(rb_progname, lenc); rb_obj_freeze(rb_progname); parser = rb_parser_new(); |