| 372 | |
| 373 | |
| 374 | static void loaderror (lua_State *L, const char *filename) { |
| 375 | luaL_error(L, "error loading module " LUA_QS " from file " LUA_QS ":\n\t%s", |
| 376 | lua_tostring(L, 1), filename, lua_tostring(L, -1)); |
| 377 | } |
| 378 | |
| 379 | |
| 380 | static int loader_Lua (lua_State *L) { |
no test coverage detected