diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-06-25 16:18:49 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-06-25 16:18:49 -0300 |
commit | 78c507b7b83a85c106b619ce2050725a80627a25 (patch) | |
tree | a2d2f27f3a98bca084f7430c085fe30763d6108a /ltests.c | |
parent | 69906cb56f1fbc20417f0ca973b3e97ef0c4bc5a (diff) | |
download | lua-78c507b7b83a85c106b619ce2050725a80627a25.tar.gz lua-78c507b7b83a85c106b619ce2050725a80627a25.tar.bz2 lua-78c507b7b83a85c106b619ce2050725a80627a25.zip |
`lua_upcall' -> `lua_call'
Diffstat (limited to 'ltests.c')
-rw-r--r-- | ltests.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltests.c,v 1.126 2002/06/18 15:19:27 roberto Exp roberto $ | 2 | ** $Id: ltests.c,v 1.127 2002/06/20 20:40:38 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 | */ |
@@ -665,7 +665,7 @@ static int testC (lua_State *L) { | |||
665 | else if EQ("rawcall") { | 665 | else if EQ("rawcall") { |
666 | int narg = getnum; | 666 | int narg = getnum; |
667 | int nres = getnum; | 667 | int nres = getnum; |
668 | lua_upcall(L, narg, nres); | 668 | lua_call(L, narg, nres); |
669 | } | 669 | } |
670 | else if EQ("call") { | 670 | else if EQ("call") { |
671 | int narg = getnum; | 671 | int narg = getnum; |