aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-05-14 18:10:07 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-05-14 18:10:07 -0300
commit56c5e749cc3dfd2e9fdbee3c48bee7a357eb059f (patch)
tree3fb0c07a537529603634e8a381effe9b4756dc35
parent9ec9a012e780cd9d55382134fa955e96a03f7e49 (diff)
downloadlua-56c5e749cc3dfd2e9fdbee3c48bee7a357eb059f.tar.gz
lua-56c5e749cc3dfd2e9fdbee3c48bee7a357eb059f.tar.bz2
lua-56c5e749cc3dfd2e9fdbee3c48bee7a357eb059f.zip
no more compatibility code (`lua_pushupvalues')
-rw-r--r--ltests.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/ltests.c b/ltests.c
index 7527c40a..6e60dd66 100644
--- a/ltests.c
+++ b/ltests.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.c,v 1.159 2003/04/28 19:58:06 roberto Exp roberto $ 2** $Id: ltests.c,v 1.160 2003/05/13 19:22:19 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*/
@@ -663,9 +663,6 @@ static int testC (lua_State *L) {
663 else if EQ("pushcclosure") { 663 else if EQ("pushcclosure") {
664 lua_pushcclosure(L, testC, getnum); 664 lua_pushcclosure(L, testC, getnum);
665 } 665 }
666 else if EQ("pushupvalues") {
667 lua_pushupvalues(L);
668 }
669 else if EQ("remove") { 666 else if EQ("remove") {
670 lua_remove(L, getnum); 667 lua_remove(L, getnum);
671 } 668 }