Skip to content

Commit

Permalink
Change to v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shibayan committed Jan 19, 2016
1 parent 1814695 commit 704d999
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Binary file modified src/iislua.rc
Binary file not shown.
5 changes: 5 additions & 0 deletions src/iislua_core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,11 @@ void iislua_close(lua_State *L)

void iislua_load_file(lua_State *L, const char *name, const char *file)
{
if (strlen(file) == 0)
{
return;
}

luaL_loadfile(L, file);
lua_setglobal(L, name);
}
Expand Down

0 comments on commit 704d999

Please sign in to comment.