1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Follows callback declaration updates

This commit is contained in:
Nobuyoshi Nakada 2019-08-28 00:09:01 +09:00
parent 4209066f0e
commit 6a0d2bc2af
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60
4 changed files with 16 additions and 11 deletions

View file

@ -7,7 +7,7 @@
extern "C" {
#endif
VALUE proc_spec_rb_proc_new_function(VALUE args) {
VALUE proc_spec_rb_proc_new_function(RB_BLOCK_CALL_FUNC_ARGLIST(args, dummy)) {
return rb_funcall(args, rb_intern("inspect"), 0);
}