summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authorJeremy Evans <code@jeremyevans.net>2019-09-25 17:14:17 -0700
committerJeremy Evans <code@jeremyevans.net>2019-09-26 08:01:53 -0700
commit6b52959ef76f6f19e50c6f80f00c08bb0daf5c7c (patch)
tree51e113dbed60184f2d9c5abd8faa05b2e0885368 /vm_core.h
parent47d44510a3f5c6cfca69b3fc05d7f5f35b1b2784 (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.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/vm_core.h b/vm_core.h
index 4c233fa27f..f1e7443926 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -951,6 +951,7 @@ typedef struct rb_thread_struct {
struct {
VALUE proc;
VALUE args;
+ int kw_splat;
} proc;
struct {
VALUE (*func)(void *);