diff options
Diffstat (limited to 'include/BLua.h')
-rw-r--r-- | include/BLua.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/BLua.h b/include/BLua.h index 1cc74f4..4fc9aa0 100644 --- a/include/BLua.h +++ b/include/BLua.h @@ -78,7 +78,7 @@ class Lua : public Base { void open_dir(); void open_bit(); void open_jit(); - int wrap_open(openlualib_t open) { int n = gettop(); int r = open(L); for(remove(n); n <= gettop(); remove(n));} + int wrap_open(openlualib_t open) { int n = gettop(); int r = open(L); while (n < gettop()) remove(n);} void declarefunc(const String &, lua_CFunction, int = LUA_GLOBALSINDEX); void call(const String &, int = LUA_GLOBALSINDEX, int = 0, int = 0); void call(int = 0, int = 0) throw (GeneralException); |