summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/lauxlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lua/lauxlib.c')
-rw-r--r--apps/plugins/lua/lauxlib.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/apps/plugins/lua/lauxlib.c b/apps/plugins/lua/lauxlib.c
index 3f6d8e6f1b..0c987cfa30 100644
--- a/apps/plugins/lua/lauxlib.c
+++ b/apps/plugins/lua/lauxlib.c
@@ -598,6 +598,7 @@ LUALIB_API int luaL_loadfile (lua_State *L, const char *filename) {
598 int fnameindex = lua_gettop(L) + 1; /* index of filename on the stack */ 598 int fnameindex = lua_gettop(L) + 1; /* index of filename on the stack */
599 lf.extraline = 0; 599 lf.extraline = 0;
600 lf.f = rb->open(filename, O_RDONLY); 600 lf.f = rb->open(filename, O_RDONLY);
601 lua_pushfstring(L, "@%s", filename);
601 if(lf.f < 0) { 602 if(lf.f < 0) {
602 /* Fallback */ 603 /* Fallback */
603 604
@@ -613,12 +614,7 @@ LUALIB_API int luaL_loadfile (lua_State *L, const char *filename) {
613 if(lf.f < 0) 614 if(lf.f < 0)
614 return errfile(L, "open", fnameindex); 615 return errfile(L, "open", fnameindex);
615 } 616 }
616
617 if(lf.f >= 0)
618 lua_pushfstring(L, "@%s", buffer);
619 } 617 }
620 else
621 lua_pushfstring(L, "@%s", filename);
622 618
623 status = lua_load(L, getF, &lf, lua_tostring(L, -1)); 619 status = lua_load(L, getF, &lf, lua_tostring(L, -1));
624 rb->close(lf.f); 620 rb->close(lf.f);