rename mrb_open_without_mrbgems to mrb_open_core

This commit is contained in:
take_cheeze
2014-03-22 04:07:31 +09:00
committed by Yukihiro "Matz" Matsumoto
parent 36813c87f6
commit baca365caa
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -296,7 +296,7 @@ mrb_value mrb_str_new_static(mrb_state *mrb, const char *p, size_t len);
mrb_state* mrb_open(void);
mrb_state* mrb_open_allocf(mrb_allocf, void *ud);
mrb_state* mrb_open_without_mrbgems(mrb_allocf, void *ud);
mrb_state* mrb_open_core(mrb_allocf, void *ud);
void mrb_close(mrb_state*);
void* mrb_default_allocf(mrb_state*, void*, size_t, void*);
+1 -1
View File
@@ -123,7 +123,7 @@ mrb_open_allocf(mrb_allocf f, void *ud)
}
mrb_state*
mrb_open_without_mrbgems(mrb_allocf f, void *ud)
mrb_open_core(mrb_allocf f, void *ud)
{
return mrb_open_common(f, ud, FALSE);
}