| 13140 | |
| 13141 | |
| 13142 | static void loaderror (lua_State *L, const char *filename) { |
| 13143 | luaL_error(L, "error loading module " LUA_QS " from file " LUA_QS ":\n\t%s", |
| 13144 | lua_tostring(L, 1), filename, lua_tostring(L, -1)); |
| 13145 | } |
| 13146 | |
| 13147 | |
| 13148 | static int loader_Lua (lua_State *L) { |
no test coverage detected