aboutsummaryrefslogtreecommitdiff
path: root/ltests.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-10-31 11:10:24 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-10-31 11:10:24 -0200
commit67c1afff5917b118f3be818dd0df7448d19de877 (patch)
tree10b60153e85947af9a1791148b145e0dca82775d /ltests.c
parent03770ecfc91718f7a208995adb1f9fd5d8e0c85e (diff)
downloadlua-67c1afff5917b118f3be818dd0df7448d19de877.tar.gz
lua-67c1afff5917b118f3be818dd0df7448d19de877.tar.bz2
lua-67c1afff5917b118f3be818dd0df7448d19de877.zip
lua_settagmethod does not return old tag method
Diffstat (limited to 'ltests.c')
-rw-r--r--ltests.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/ltests.c b/ltests.c
index b45a1de2..a80a7977 100644
--- a/ltests.c
+++ b/ltests.c
@@ -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
324static int settagmethod (lua_State *L) { 324static 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