aboutsummaryrefslogtreecommitdiff
path: root/ltests.c
diff options
context:
space:
mode:
Diffstat (limited to 'ltests.c')
-rw-r--r--ltests.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/ltests.c b/ltests.c
index 04cd1b40..fe0ed439 100644
--- a/ltests.c
+++ b/ltests.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.c,v 1.41 2000/09/11 19:42:57 roberto Exp roberto $ 2** $Id: ltests.c,v 1.42 2000/09/14 14:09:31 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*/
@@ -410,6 +410,12 @@ static int testC (lua_State *L) {
410 else if EQ("insert") { 410 else if EQ("insert") {
411 lua_insert(L, getnum); 411 lua_insert(L, getnum);
412 } 412 }
413 else if EQ("gettable") {
414 lua_gettable(L, getnum);
415 }
416 else if EQ("settable") {
417 lua_settable(L, getnum);
418 }
413 else if EQ("next") { 419 else if EQ("next") {
414 lua_next(L, -2); 420 lua_next(L, -2);
415 } 421 }