diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-06-13 10:44:50 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-06-13 10:44:50 -0300 |
| commit | eb3de8768a6b614597f7e5f018fc31a9f52441df (patch) | |
| tree | ea6e0e48f6d6d8bccb4c168171bbb13a3bca1c99 /lapi.c | |
| parent | 864c96f36ce8410b03652b1cb9800e4b3c76bcf7 (diff) | |
| download | lua-eb3de8768a6b614597f7e5f018fc31a9f52441df.tar.gz lua-eb3de8768a6b614597f7e5f018fc31a9f52441df.tar.bz2 lua-eb3de8768a6b614597f7e5f018fc31a9f52441df.zip | |
`rawcall' -> `upcall' (unprotected call)
Diffstat (limited to 'lapi.c')
| -rw-r--r-- | lapi.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lapi.c,v 1.197 2002/06/12 14:51:31 roberto Exp roberto $ | 2 | ** $Id: lapi.c,v 1.198 2002/06/13 13:39:55 roberto Exp roberto $ |
| 3 | ** Lua API | 3 | ** Lua API |
| 4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
| 5 | */ | 5 | */ |
| @@ -555,7 +555,7 @@ LUA_API void lua_setmetatable (lua_State *L, int objindex) { | |||
| 555 | ** `load' and `call' functions (run Lua code) | 555 | ** `load' and `call' functions (run Lua code) |
| 556 | */ | 556 | */ |
| 557 | 557 | ||
| 558 | LUA_API void lua_rawcall (lua_State *L, int nargs, int nresults) { | 558 | LUA_API void lua_upcall (lua_State *L, int nargs, int nresults) { |
| 559 | StkId func; | 559 | StkId func; |
| 560 | lua_lock(L); | 560 | lua_lock(L); |
| 561 | api_checknelems(L, nargs+1); | 561 | api_checknelems(L, nargs+1); |
