summaryrefslogtreecommitdiff
path: root/ltests.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-07-09 09:08:43 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-07-09 09:08:43 -0300
commit66ed154c8909db1fe9bce148c94ef68c1bd7f986 (patch)
tree998f79816eaa3343180f32e4d650643d366b192e /ltests.c
parentf52f357a5576aad0794e4c46b86bba5c75ddcf3d (diff)
downloadlua-66ed154c8909db1fe9bce148c94ef68c1bd7f986.tar.gz
lua-66ed154c8909db1fe9bce148c94ef68c1bd7f986.tar.bz2
lua-66ed154c8909db1fe9bce148c94ef68c1bd7f986.zip
details
Diffstat (limited to 'ltests.c')
-rw-r--r--ltests.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltests.c b/ltests.c
index 6e60dd66..90430e67 100644
--- a/ltests.c
+++ b/ltests.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.c,v 1.160 2003/05/13 19:22:19 roberto Exp roberto $ 2** $Id: ltests.c,v 1.161 2003/05/14 21:10:07 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,7 +322,7 @@ static int table_query (lua_State *L) {
322 luaA_pushobject(L, gkey(gnode(t, i))); 322 luaA_pushobject(L, gkey(gnode(t, i)));
323 } 323 }
324 else 324 else
325 lua_pushstring(L, "<undef>"); 325 lua_pushliteral(L, "<undef>");
326 luaA_pushobject(L, gval(gnode(t, i))); 326 luaA_pushobject(L, gval(gnode(t, i)));
327 if (t->node[i].next) 327 if (t->node[i].next)
328 lua_pushintegral(L, t->node[i].next - t->node); 328 lua_pushintegral(L, t->node[i].next - t->node);