diff options
author | Jeremy Evans <[email protected]> | 2019-09-25 11:22:14 -0700 |
---|---|---|
committer | Jeremy Evans <[email protected]> | 2019-09-26 08:01:53 -0700 |
commit | 760893d2f85682a3c8c00be4b29dea0f6b2bb4f8 () | |
tree | c08a72928c4e5145422cd2f452fa4baebc9c9399 /include/ruby/intern.h | |
parent | 0aa267f985084e69c3e45cc3e94698eaacab5c36 (diff) |
Fix keyword argument separation issues in Proc#{<<,>>}
This requires adding rb_proc_call_with_block_kw.
Notes: Merged: https://.com/ruby/ruby/pull/2484
-rw-r--r-- | include/ruby/intern.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -453,6 +453,7 @@ VALUE rb_proc_new(rb_block_call_func_t, VALUE); VALUE rb_obj_is_proc(VALUE); VALUE rb_proc_call(VALUE, VALUE); VALUE rb_proc_call_with_block(VALUE, int argc, const VALUE *argv, VALUE); int rb_proc_arity(VALUE); VALUE rb_proc_lambda_p(VALUE); VALUE rb_binding_new(void); |