aboutsummaryrefslogtreecommitdiffstats
path: root/cont.c
diff options
context:
space:
mode:
authorJeremy Evans <code@jeremyevans.net>2019-09-03 11:50:46 -0700
committerJeremy Evans <code@jeremyevans.net>2019-09-05 17:47:12 -0700
commitfd2ef1a9bfa489842472d183ea10b6fd9838c460 (patch)
tree6cdd5a5aee5c4d90af6c3d858191984d44382bc1 /cont.c
parentce04392d8d4f8cf14c70bbf1ad3544c7db4e1671 (diff)
downloadruby-fd2ef1a9bfa489842472d183ea10b6fd9838c460.tar.gz
Add VM_NO_KEYWORDS
I think this is easier to read than using literal 0 with comments in every case where it is used.
Diffstat (limited to 'cont.c')
-rw-r--r--cont.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cont.c b/cont.c
index 4b60c7803d..d48f845369 100644
--- a/cont.c
+++ b/cont.c
@@ -1802,7 +1802,7 @@ rb_fiber_start(void)
th->ec->root_svar = Qfalse;
EXEC_EVENT_HOOK(th->ec, RUBY_EVENT_FIBER_SWITCH, th->self, 0, 0, 0, Qnil);
- cont->value = rb_vm_invoke_proc(th->ec, proc, argc, argv, 0 /* kw_splat */, VM_BLOCK_HANDLER_NONE);
+ cont->value = rb_vm_invoke_proc(th->ec, proc, argc, argv, VM_NO_KEYWORDS, VM_BLOCK_HANDLER_NONE);
}
EC_POP_TAG();