diff options
Diffstat (limited to 'src/lib/elua')
-rw-r--r-- | src/lib/elua/elua.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/elua/elua.c b/src/lib/elua/elua.c index 606d04e45b..f537663d53 100644 --- a/src/lib/elua/elua.c +++ b/src/lib/elua/elua.c | |||
@@ -499,7 +499,7 @@ _elua_module_system_init(lua_State *L) | |||
499 | const char *modpath = es->moddir; | 499 | const char *modpath = es->moddir; |
500 | const char *appspath = es->appsdir; | 500 | const char *appspath = es->appsdir; |
501 | Eina_Stringshare *data = NULL; | 501 | Eina_Stringshare *data = NULL; |
502 | int n = 3; | 502 | int n = 4; |
503 | if (!corepath || !modpath || !appspath) | 503 | if (!corepath || !modpath || !appspath) |
504 | return 0; | 504 | return 0; |
505 | lua_pushvalue(L, 1); | 505 | lua_pushvalue(L, 1); |
@@ -515,6 +515,7 @@ _elua_module_system_init(lua_State *L) | |||
515 | } | 515 | } |
516 | lua_pushfstring(L, "%s/?.eo.lua;", modpath); | 516 | lua_pushfstring(L, "%s/?.eo.lua;", modpath); |
517 | lua_pushfstring(L, "%s/?.lua;", modpath); | 517 | lua_pushfstring(L, "%s/?.lua;", modpath); |
518 | lua_pushfstring(L, "%s/?.lua;", appspath); | ||
518 | lua_pushvalue(L, 3); | 519 | lua_pushvalue(L, 3); |
519 | lua_concat(L, n + 1); | 520 | lua_concat(L, n + 1); |
520 | lua_pushfstring(L, "%s/?.lua;", appspath); | 521 | lua_pushfstring(L, "%s/?.lua;", appspath); |