aboutsummaryrefslogtreecommitdiff
path: root/lapi.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-10-07 15:29:13 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-10-07 15:29:13 -0300
commit2a21f6c894e23a201f4028cd222a5790b79018fe (patch)
treed8e55b99e29ba5f444748608f363cb3ad797efd3 /lapi.c
parent3670db99b65f74d2671bfa9aa37ca7794c32332d (diff)
downloadlua-2a21f6c894e23a201f4028cd222a5790b79018fe.tar.gz
lua-2a21f6c894e23a201f4028cd222a5790b79018fe.tar.bz2
lua-2a21f6c894e23a201f4028cd222a5790b79018fe.zip
'lua_Kcontext' -> 'lua_KContext'
Diffstat (limited to 'lapi.c')
-rw-r--r--lapi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lapi.c b/lapi.c
index 87ea1493..417c3a1e 100644
--- a/lapi.c
+++ b/lapi.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lapi.c,v 2.234 2014/08/21 20:07:56 roberto Exp roberto $ 2** $Id: lapi.c,v 2.235 2014/08/27 14:59:33 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*/
@@ -877,7 +877,7 @@ LUA_API void lua_setuservalue (lua_State *L, int idx) {
877 877
878 878
879LUA_API void lua_callk (lua_State *L, int nargs, int nresults, 879LUA_API void lua_callk (lua_State *L, int nargs, int nresults,
880 lua_Kcontext ctx, lua_KFunction k) { 880 lua_KContext ctx, lua_KFunction k) {
881 StkId func; 881 StkId func;
882 lua_lock(L); 882 lua_lock(L);
883 api_check(k == NULL || !isLua(L->ci), 883 api_check(k == NULL || !isLua(L->ci),
@@ -916,7 +916,7 @@ static void f_call (lua_State *L, void *ud) {
916 916
917 917
918LUA_API int lua_pcallk (lua_State *L, int nargs, int nresults, int errfunc, 918LUA_API int lua_pcallk (lua_State *L, int nargs, int nresults, int errfunc,
919 lua_Kcontext ctx, lua_KFunction k) { 919 lua_KContext ctx, lua_KFunction k) {
920 struct CallS c; 920 struct CallS c;
921 int status; 921 int status;
922 ptrdiff_t func; 922 ptrdiff_t func;