summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-12-15 06:22:09 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-12-15 06:22:09 +0000
commitb53456731ebb9dab5b7cbfcd6789afcab2575e1e (patch)
tree48461dc9044a82dcb1defc8cb5e8914a62e5889d /parse.y
parent836794f206012c5c48f461148cde956452e6b201 (diff)
parse.y: one warning, one line [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57082 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/parse.y b/parse.y
index dde6df8cfe..1935160fb2 100644
--- a/parse.y
+++ b/parse.y
@@ -8526,8 +8526,8 @@ parser_yylex(struct parser_params *parser)
c = tLPAREN_ARG;
}
else if (IS_lex_state(EXPR_ENDFN) && space_seen && !lambda_beginning_p()) {
- rb_warning0("parentheses after method name is interpreted as");
- rb_warning0("an argument list, not a decomposed argument");
+ rb_warning0("parentheses after method name is interpreted as "
+ "an argument list, not a decomposed argument");
}
paren_nest++;
COND_PUSH(0);