From 8059f3b4e09d6be715ebc55a794130f4c7cfd816 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 22 Feb 2016 14:54:31 +0000 Subject: 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 --- ruby.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'ruby.c') diff --git a/ruby.c b/ruby.c index 2a83cb17e8..13b9dd58fa 100644 --- a/ruby.c +++ b/ruby.c @@ -1629,14 +1629,10 @@ process_options(int argc, char **argv, struct cmdline_options *opt) } 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) { - 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("gsub", rb_f_gsub, -1); rb_define_global_function("chop", rb_f_chop, 0); -- cgit v1.2.3