mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Remove redundant parentheses [ci skip]
This commit is contained in:
parent
c684b1aa26
commit
33100797c4
1 changed files with 1 additions and 1 deletions
2
ruby.c
2
ruby.c
|
@ -1785,7 +1785,7 @@ process_options(int argc, char **argv, ruby_cmdline_options_t *opt)
|
|||
argc -= i;
|
||||
argv += i;
|
||||
|
||||
if ((FEATURE_SET_P(opt->features, rubyopt)) && (s = getenv("RUBYOPT"))) {
|
||||
if (FEATURE_SET_P(opt->features, rubyopt) && (s = getenv("RUBYOPT"))) {
|
||||
VALUE src_enc_name = opt->src.enc.name;
|
||||
VALUE ext_enc_name = opt->ext.enc.name;
|
||||
VALUE int_enc_name = opt->intern.enc.name;
|
||||
|
|
Loading…
Reference in a new issue