summaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authorMartin Dürst <duerst@it.aoyama.ac.jp>2019-06-05 14:03:50 +0900
committerMartin Dürst <duerst@it.aoyama.ac.jp>2019-06-05 14:03:50 +0900
commitf258137083051a7fc2412c62e3fb239f93d1fdf8 (patch)
tree39decb7e962a56d36d841209005180655f6f985e /compile.c
parent1624d77f3ee0a536a6ab37da014d85d16fcd1de2 (diff)
Fix grammar of macro name: ECCESSED -> ECCESSIVE
Fix the name of the macro variable introduced in 0872ea5330 from NODE_SPECIAL_EXCESSED_COMMA to NODE_SPECIAL_EXCESSIVE_COMMA.
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c2
1 files changed, 1 insertions, 1 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;
}