aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--compile.c2
-rw-r--r--node.c2
-rw-r--r--node.h2
-rw-r--r--parse.y4
4 files changed, 5 insertions, 5 deletions
diff --git a/compile.c b/compile.c
index 66b7589bf7..60cdb7669e 100644
--- a/compile.c
+++ b/compile.c
@@ -1632,7 +1632,7 @@ iseq_set_arguments(rb_iseq_t *iseq, LINK_ANCHOR *const optargs, const NODE *cons
debugs(" - argc: %d\n", body->param.lead_num);
rest_id = args->rest_arg;
- if (rest_id == NODE_SPECIAL_EXCESSED_COMMA) {
+ if (rest_id == NODE_SPECIAL_EXCESSIVE_COMMA) {
last_comma = 1;
rest_id = 0;
}
diff --git a/node.c b/node.c
index 8be6f81f87..e4c4961217 100644
--- a/node.c
+++ b/node.c
@@ -1011,7 +1011,7 @@ dump_node(VALUE buf, VALUE indent, int comment, const NODE * node)
F_NODE(nd_ainfo->post_init, "initialization of post-arguments");
F_ID(nd_ainfo->first_post_arg, "first post argument");
F_CUSTOM1(nd_ainfo->rest_arg, "rest argument") {
- if (node->nd_ainfo->rest_arg == NODE_SPECIAL_EXCESSED_COMMA) {
+ if (node->nd_ainfo->rest_arg == NODE_SPECIAL_EXCESSIVE_COMMA) {
A("1 (excessed comma)");
}
else {
diff --git a/node.h b/node.h
index 539c3724a9..ebcc49c9be 100644
--- a/node.h
+++ b/node.h
@@ -383,7 +383,7 @@ typedef struct RNode {
#define NODE_REQUIRED_KEYWORD_P(node) ((node)->nd_value == NODE_SPECIAL_REQUIRED_KEYWORD)
#define NODE_SPECIAL_NO_NAME_REST ((NODE *)-1)
#define NODE_NAMED_REST_P(node) ((node) != NODE_SPECIAL_NO_NAME_REST)
-#define NODE_SPECIAL_EXCESSED_COMMA ((ID)1)
+#define NODE_SPECIAL_EXCESSIVE_COMMA ((ID)1)
VALUE rb_node_case_when_optimizable_literal(const NODE *const node);
diff --git a/parse.y b/parse.y
index 4446a29fa3..6fc098bc6e 100644
--- a/parse.y
+++ b/parse.y
@@ -3257,7 +3257,7 @@ block_param : f_arg ',' f_block_optarg ',' f_rest_arg opt_block_args_tail
{
/*%%%*/
/* magic number for rest_id in iseq_set_arguments() */
- $$ = new_args(p, $1, Qnone, NODE_SPECIAL_EXCESSED_COMMA, Qnone, new_args_tail(p, Qnone, Qnone, Qnone, &@1), &@$);
+ $$ = new_args(p, $1, Qnone, NODE_SPECIAL_EXCESSIVE_COMMA, Qnone, new_args_tail(p, Qnone, Qnone, Qnone, &@1), &@$);
/*% %*/
/*% ripper: new_args(p, $1, Qnone, excessed_comma!, Qnone, new_args_tail(p, Qnone, Qnone, Qnone, NULL), NULL) %*/
}
@@ -11130,7 +11130,7 @@ args_with_numbered(struct parser_params *p, NODE *args, int max_numparam)
if (max_numparam > 0) {
if (!args) args = new_args_tail(p, 0, 0, 0, 0);
args->nd_ainfo->pre_args_num = max_numparam;
- args->nd_ainfo->rest_arg = NODE_SPECIAL_EXCESSED_COMMA;
+ args->nd_ainfo->rest_arg = NODE_SPECIAL_EXCESSIVE_COMMA;
}
return args;
}