diff options
Diffstat (limited to 'lapi.c')
| -rw-r--r-- | lapi.c | 8 |
1 files changed, 4 insertions, 4 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lapi.c,v 2.231 2014/07/22 18:07:47 roberto Exp roberto $ | 2 | ** $Id: lapi.c,v 2.232 2014/07/30 14:00:14 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 | */ |
| @@ -854,8 +854,8 @@ LUA_API void lua_setuservalue (lua_State *L, int idx) { | |||
| 854 | "results from function overflow current stack size") | 854 | "results from function overflow current stack size") |
| 855 | 855 | ||
| 856 | 856 | ||
| 857 | LUA_API void lua_callk (lua_State *L, int nargs, int nresults, lua_Ctx ctx, | 857 | LUA_API void lua_callk (lua_State *L, int nargs, int nresults, |
| 858 | lua_KFunction k) { | 858 | lua_Kcontext ctx, lua_KFunction k) { |
| 859 | StkId func; | 859 | StkId func; |
| 860 | lua_lock(L); | 860 | lua_lock(L); |
| 861 | api_check(k == NULL || !isLua(L->ci), | 861 | api_check(k == NULL || !isLua(L->ci), |
| @@ -894,7 +894,7 @@ static void f_call (lua_State *L, void *ud) { | |||
| 894 | 894 | ||
| 895 | 895 | ||
| 896 | LUA_API int lua_pcallk (lua_State *L, int nargs, int nresults, int errfunc, | 896 | LUA_API int lua_pcallk (lua_State *L, int nargs, int nresults, int errfunc, |
| 897 | lua_Ctx ctx, lua_KFunction k) { | 897 | lua_Kcontext ctx, lua_KFunction k) { |
| 898 | struct CallS c; | 898 | struct CallS c; |
| 899 | int status; | 899 | int status; |
| 900 | ptrdiff_t func; | 900 | ptrdiff_t func; |
