diff options
author | Jeremy Evans <[email protected]> | 2019-09-25 17:14:17 -0700 |
---|---|---|
committer | Jeremy Evans <[email protected]> | 2019-09-26 08:01:53 -0700 |
commit | 6b52959ef76f6f19e50c6f80f00c08bb0daf5c7c (patch) | |
tree | 51e113dbed60184f2d9c5abd8faa05b2e0885368 /vm_core.h | |
parent | 47d44510a3f5c6cfca69b3fc05d7f5f35b1b2784 (diff) |
Fix keyword argument separation issues in Thread.new
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/2484
Diffstat (limited to 'vm_core.h')
-rw-r--r-- | vm_core.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -951,6 +951,7 @@ typedef struct rb_thread_struct { struct { VALUE proc; VALUE args; + int kw_splat; } proc; struct { VALUE (*func)(void *); |