aboutsummaryrefslogtreecommitdiff
path: root/lauxlib.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 /lauxlib.c
parent864c96f36ce8410b03652b1cb9800e4b3c76bcf7 (diff)
downloadlua-eb3de8768a6b614597f7e5f018fc31a9f52441df.tar.gz
lua-eb3de8768a6b614597f7e5f018fc31a9f52441df.tar.bz2
lua-eb3de8768a6b614597f7e5f018fc31a9f52441df.zip
`rawcall' -> `upcall' (unprotected call)
Diffstat (limited to 'lauxlib.c')
-rw-r--r--lauxlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lauxlib.c b/lauxlib.c
index f905361f..51561746 100644
--- a/lauxlib.c
+++ b/lauxlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lauxlib.c,v 1.72 2002/06/03 20:11:41 roberto Exp roberto $ 2** $Id: lauxlib.c,v 1.73 2002/06/05 16:59:37 roberto Exp roberto $
3** Auxiliary functions for building Lua libraries 3** Auxiliary functions for building Lua libraries
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -150,7 +150,7 @@ LUALIB_API int luaL_callmeta (lua_State *L, int obj, const char *event) {
150 return 0; 150 return 0;
151 } 151 }
152 lua_pushvalue(L, obj); 152 lua_pushvalue(L, obj);
153 lua_rawcall(L, 1, 1); 153 lua_upcall(L, 1, 1);
154 return 1; 154 return 1;
155} 155}
156 156