elua lib: API rename

This commit is contained in:
Daniel Kolesa 2015-04-14 14:14:50 +01:00 committed by Daniel Kolesa
parent d8890209af
commit f8f9cc14a7
3 changed files with 5 additions and 5 deletions

View File

@ -66,7 +66,7 @@ EAPI int elua_init(void);
EAPI int elua_shutdown(void);
EAPI Elua_State *elua_state_new(const char *progname);
EAPI Elua_State *elua_state_from_lua_get(lua_State *L);
EAPI Elua_State *elua_state_from_lua_state_get(lua_State *L);
EAPI void elua_state_free(Elua_State *es);

View File

@ -190,7 +190,7 @@ elua_io_loadfile(const Elua_State *es, const char *fname)
static int
loadfile(lua_State *L)
{
Elua_State *es = elua_state_from_lua_get(L);
Elua_State *es = elua_state_from_lua_state_get(L);
const char *fname = luaL_optstring(L, 1, NULL);
int status = elua_io_loadfile(es, fname),
hasenv = (lua_gettop(L) >= 3);

View File

@ -216,7 +216,7 @@ elua_state_lua_state_get(const Elua_State *es)
}
EAPI Elua_State *
elua_state_from_lua_get(lua_State *L)
elua_state_from_lua_state_get(lua_State *L)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(L, NULL);
lua_getfield(L, LUA_REGISTRYINDEX, "elua_ptr");
@ -339,7 +339,7 @@ elua_state_modules_setup(const Elua_State *es)
EAPI int
elua_module_init(lua_State *L)
{
Elua_State *es = elua_state_from_lua_get(L);
Elua_State *es = elua_state_from_lua_state_get(L);
if (!lua_isnoneornil(L, 1))
{
lua_pushvalue(L, 1);
@ -357,7 +357,7 @@ elua_module_init(lua_State *L)
EAPI int
elua_module_system_init(lua_State *L)
{
Elua_State *es = elua_state_from_lua_get(L);
Elua_State *es = elua_state_from_lua_state_get(L);
const char *corepath = es->coredir;
const char *modpath = es->moddir;
const char *appspath = es->appsdir;