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

Restore rb_exec_recursive_outer

This was a public method, so we should probably keep it.
This commit is contained in:
John Hawthorn 2022-06-14 23:52:20 -07:00
parent 5310147bb8
commit 17d260a87f
Notes: git 2022-06-16 08:07:56 +09:00
6 changed files with 11 additions and 3 deletions

View file

@ -16,7 +16,7 @@ exec_recursive(VALUE self, VALUE mid)
static VALUE
exec_recursive_outer(VALUE self, VALUE mid)
{
return rb_exec_recursive_outer_mid(recursive_i, self, mid, rb_intern("exec_recursive_outer"));
return rb_exec_recursive_outer(recursive_i, self, mid);
}
void