| 387 | |
| 388 | |
| 389 | static void loaderror (lua_State *L, const char *filename) { |
| 390 | luaL_error(L, "error loading module " LUA_QS " from file " LUA_QS ":\n\t%s", |
| 391 | lua_tostring(L, 1), filename, lua_tostring(L, -1)); |
| 392 | } |
| 393 | |
| 394 | |
| 395 | static int loader_Lua (lua_State *L) { |
no test coverage detected