aboutsummaryrefslogtreecommitdiff
path: root/ltests.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-06-13 10:44:50 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-06-13 10:44:50 -0300
commiteb3de8768a6b614597f7e5f018fc31a9f52441df (patch)
treeea6e0e48f6d6d8bccb4c168171bbb13a3bca1c99 /ltests.c
parent864c96f36ce8410b03652b1cb9800e4b3c76bcf7 (diff)
downloadlua-eb3de8768a6b614597f7e5f018fc31a9f52441df.tar.gz
lua-eb3de8768a6b614597f7e5f018fc31a9f52441df.tar.bz2
lua-eb3de8768a6b614597f7e5f018fc31a9f52441df.zip
`rawcall' -> `upcall' (unprotected call)
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 bf7c19b3..2cc66bca 100644
--- a/ltests.c
+++ b/ltests.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.c,v 1.123 2002/06/03 20:11:41 roberto Exp roberto $ 2** $Id: ltests.c,v 1.124 2002/06/11 16:23:47 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*/
@@ -634,7 +634,7 @@ static int testC (lua_State *L) {
634 else if EQ("rawcall") { 634 else if EQ("rawcall") {
635 int narg = getnum; 635 int narg = getnum;
636 int nres = getnum; 636 int nres = getnum;
637 lua_rawcall(L, narg, nres); 637 lua_upcall(L, narg, nres);
638 } 638 }
639 else if EQ("call") { 639 else if EQ("call") {
640 int narg = getnum; 640 int narg = getnum;