rename mrb_yield_internal to mrb_yield_with_class since it's no longer internal

This commit is contained in:
Yukihiro "Matz" Matsumoto
2014-03-19 08:57:54 +09:00
parent 2f4eed2501
commit 9084e03556
6 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -364,7 +364,7 @@ void mrb_print_error(mrb_state *mrb);
mrb_value mrb_yield(mrb_state *mrb, mrb_value b, mrb_value arg);
mrb_value mrb_yield_argv(mrb_state *mrb, mrb_value b, int argc, mrb_value *argv);
mrb_value mrb_yield_internal(mrb_state *mrb, mrb_value b, int argc, mrb_value *argv, mrb_value self, struct RClass *c);
mrb_value mrb_yield_with_class(mrb_state *mrb, mrb_value b, int argc, mrb_value *argv, mrb_value self, struct RClass *c);
void mrb_gc_protect(mrb_state *mrb, mrb_value obj);
mrb_value mrb_to_int(mrb_state *mrb, mrb_value val);