aboutsummaryrefslogtreecommitdiff
path: root/ltm.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-01-19 10:00:45 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-01-19 10:00:45 -0200
commit2877bad4c260d11c22c3b12e633d6b1ca3415789 (patch)
tree2109684c4521c34b584bfd24e0eae05688c7fc32 /ltm.c
parent27163f032eed6b851b98a0ab67b1387d701e61c0 (diff)
downloadlua-2877bad4c260d11c22c3b12e633d6b1ca3415789.tar.gz
lua-2877bad4c260d11c22c3b12e633d6b1ca3415789.tar.bz2
lua-2877bad4c260d11c22c3b12e633d6b1ca3415789.zip
new debug API (first version)
Diffstat (limited to 'ltm.c')
-rw-r--r--ltm.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/ltm.c b/ltm.c
index 615cdfe4..93a806d8 100644
--- a/ltm.c
+++ b/ltm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.c,v 1.29 1999/11/22 13:12:07 roberto Exp roberto $ 2** $Id: ltm.c,v 1.30 1999/12/23 18:19:57 roberto Exp roberto $
3** Tag methods 3** Tag methods
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -108,8 +108,6 @@ int luaT_effectivetag (const TObject *o) {
108 LUA_T_USERDATA, LUA_T_NUMBER, LUA_T_STRING, LUA_T_ARRAY, 108 LUA_T_USERDATA, LUA_T_NUMBER, LUA_T_STRING, LUA_T_ARRAY,
109 LUA_T_LPROTO, LUA_T_CPROTO, LUA_T_NIL, 109 LUA_T_LPROTO, LUA_T_CPROTO, LUA_T_NIL,
110 LUA_T_LPROTO, LUA_T_CPROTO, /* LUA_T_LCLOSURE, LUA_T_CCLOSURE */ 110 LUA_T_LPROTO, LUA_T_CPROTO, /* LUA_T_LCLOSURE, LUA_T_CCLOSURE */
111 LUA_T_LPROTO, LUA_T_CPROTO, /* LUA_T_LCLMARK, LUA_T_CCLMARK */
112 LUA_T_LPROTO, LUA_T_CPROTO /* LUA_T_LMARK, LUA_T_CMARK */
113 }; 111 };
114 int t; 112 int t;
115 switch (t = ttype(o)) { 113 switch (t = ttype(o)) {