diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-05-14 18:10:07 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-05-14 18:10:07 -0300 |
commit | 56c5e749cc3dfd2e9fdbee3c48bee7a357eb059f (patch) | |
tree | 3fb0c07a537529603634e8a381effe9b4756dc35 | |
parent | 9ec9a012e780cd9d55382134fa955e96a03f7e49 (diff) | |
download | lua-56c5e749cc3dfd2e9fdbee3c48bee7a357eb059f.tar.gz lua-56c5e749cc3dfd2e9fdbee3c48bee7a357eb059f.tar.bz2 lua-56c5e749cc3dfd2e9fdbee3c48bee7a357eb059f.zip |
no more compatibility code (`lua_pushupvalues')
-rw-r--r-- | ltests.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -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 | } |