diff options
Diffstat (limited to 'ltests.c')
-rw-r--r-- | ltests.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltests.c,v 1.52 2000/10/26 12:47:05 roberto Exp roberto $ | 2 | ** $Id: ltests.c,v 1.53 2000/10/30 16:29:59 roberto Exp roberto $ |
3 | ** Internal Module for Debugging of the Lua Implementation | 3 | ** Internal Module for Debugging of the Lua Implementation |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -322,8 +322,12 @@ static int doremote (lua_State *L) { | |||
322 | } | 322 | } |
323 | 323 | ||
324 | static int settagmethod (lua_State *L) { | 324 | static int settagmethod (lua_State *L) { |
325 | int tag = luaL_check_int(L, 1); | ||
326 | const char *event = luaL_check_string(L, 2); | ||
325 | luaL_checkany(L, 3); | 327 | luaL_checkany(L, 3); |
326 | lua_settagmethod(L, luaL_check_int(L, 1), luaL_check_string(L, 2)); | 328 | lua_gettagmethod(L, tag, event); |
329 | lua_pushvalue(L, 3); | ||
330 | lua_settagmethod(L, tag, event); | ||
327 | return 1; | 331 | return 1; |
328 | } | 332 | } |
329 | 333 | ||