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
@@ -964,7 +964,7 @@ mrb_mod_module_eval(mrb_state *mrb, mrb_value mod)
mrb_raise(mrb, E_NOTIMP_ERROR, "module_eval/class_eval with string not implemented");
}
c = mrb_class_ptr(mod);
return mrb_yield_internal(mrb, b, 0, 0, mod, c);
return mrb_yield_with_class(mrb, b, 0, 0, mod, c);
}
mrb_value