diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-11-25 17:08:32 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-11-25 17:08:32 +0900 |
| commit | b631c226eb3e59a813224183bbc9ddc2a01acd0e (patch) | |
| tree | ef93a007a11e728118f01432c16c71506c336241 /mrblib/symbol.rb | |
| parent | d6e1114f71927e34bda05544d548edaa411f583f (diff) | |
| parent | 16e388863afef7616c7272d779f8cb7abc478992 (diff) | |
| download | mruby-b631c226eb3e59a813224183bbc9ddc2a01acd0e.tar.gz mruby-b631c226eb3e59a813224183bbc9ddc2a01acd0e.zip | |
Merge pull request #5585 from dearblue/args-pass
Fixed some methods where keyword arguments are not passed
Diffstat (limited to 'mrblib/symbol.rb')
| -rw-r--r-- | mrblib/symbol.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mrblib/symbol.rb b/mrblib/symbol.rb index 9c981dd9e..827e2c1e0 100644 --- a/mrblib/symbol.rb +++ b/mrblib/symbol.rb @@ -1,7 +1,7 @@ class Symbol def to_proc - ->(obj,*args,&block) do - obj.__send__(self, *args, &block) + ->(obj,*args,**opts,&block) do + obj.__send__(self, *args, **opts, &block) end end end |
