aboutsummaryrefslogtreecommitdiff
path: root/ltests.c
diff options
context:
space:
mode:
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);