summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-02-22 14:54:31 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-02-22 14:54:31 +0000
commitb0d81c107377c7c739d915c55093812c11d39627 (patch)
tree555a0c7254c3b5e88ab7f89af608a17a478042f4
parentf42d2ca85ae6bc986b6ef306f6fd1a17ee27968c (diff)
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
-rw-r--r--ruby.c8
1 files changed, 2 insertions, 6 deletions
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);