aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-07 09:44:34 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-07 09:44:34 +0000
commit057c88bc0010e24118c1136f12638c6dea837212 (patch)
tree2eb931fe139421ecf15756bb77c581f73bb3b399 /parse.y
parentf423f7c29f2cfa7686b8e0ca0b9aa365f2b3d78c (diff)
downloadruby-057c88bc0010e24118c1136f12638c6dea837212.tar.gz
parse.y: removed unused macro new_command_call
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61652 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y1
1 files changed, 0 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index 824bafdf3a..2e6863dbde 100644
--- a/parse.y
+++ b/parse.y
@@ -646,7 +646,6 @@ static int id_is_var_gen(struct parser_params *parser, ID id);
static VALUE new_qcall_gen(struct parser_params *parser, VALUE q, VALUE r, VALUE m, VALUE a);
#define new_qcall(q,r,m,a,op_loc,location) new_qcall_gen(parser, (r), (q), (m), (a))
#define new_command_qcall(q,r,m,a,op_loc,location) dispatch4(command_call, (r), (q), (m), (a))
-#define new_command_call(q,r,m,a) dispatch4(command_call, (r), (q), (m), (a))
#define new_command(m,a) dispatch2(command, (m), (a));
#define new_nil(location) Qnil