ruby.c: remove unnecessary context

* ruby.c (process_options): remove unnecessary context.
  rb_parser_append_print and rb_parser_while_loop just append some
  nodes and do not depend on the context.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53893 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2016-02-22 14:54:31 +00:00
Родитель f42d2ca85a
Коммит b0d81c1073
1 изменённых файлов: 2 добавлений и 6 удалений

8
ruby.c
Просмотреть файл

@ -1629,14 +1629,10 @@ process_options(int argc, char **argv, struct cmdline_options *opt)
} }
if (opt->do_print) { if (opt->do_print) {
PREPARE_PARSE_MAIN({ tree = rb_parser_append_print(parser, tree);
tree = rb_parser_append_print(parser, tree);
});
} }
if (opt->do_loop) { if (opt->do_loop) {
PREPARE_PARSE_MAIN({ tree = rb_parser_while_loop(parser, tree, opt->do_line, opt->do_split);
tree = rb_parser_while_loop(parser, tree, opt->do_line, opt->do_split);
});
rb_define_global_function("sub", rb_f_sub, -1); rb_define_global_function("sub", rb_f_sub, -1);
rb_define_global_function("gsub", rb_f_gsub, -1); rb_define_global_function("gsub", rb_f_gsub, -1);
rb_define_global_function("chop", rb_f_chop, 0); rb_define_global_function("chop", rb_f_chop, 0);