aboutsummaryrefslogtreecommitdiffstats
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
commit6c3b8e67942b5e7aa1d008172c571283e679ac79 (patch)
tree48461dc9044a82dcb1defc8cb5e8914a62e5889d /parse.y
parent7f7371f2e0aa6b0a56f97feba9ce7685a30af25b (diff)
downloadruby-6c3b8e67942b5e7aa1d008172c571283e679ac79.tar.gz
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);