aboutsummaryrefslogtreecommitdiff
path: root/ldo.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-08-01 14:33:08 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-08-01 14:33:08 -0300
commit2be88d50843eafae123c28dfc9750fcf473f28e4 (patch)
tree489cdf215995776425d78665a34dedb09a54c028 /ldo.c
parentf5c690b684b8503dce9fe9f9e1a956cabd1c8699 (diff)
downloadlua-2be88d50843eafae123c28dfc9750fcf473f28e4.tar.gz
lua-2be88d50843eafae123c28dfc9750fcf473f28e4.tar.bz2
lua-2be88d50843eafae123c28dfc9750fcf473f28e4.zip
'lua_Ctx' -> 'lua_Kcontext'
Diffstat (limited to 'ldo.c')
-rw-r--r--ldo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldo.c b/ldo.c
index a9daeadb..0775246b 100644
--- a/ldo.c
+++ b/ldo.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.c,v 2.125 2014/07/15 21:26:50 roberto Exp roberto $ 2** $Id: ldo.c,v 2.126 2014/07/17 13:53:37 roberto Exp roberto $
3** Stack and Call structure of Lua 3** Stack and Call structure of Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -593,7 +593,7 @@ LUA_API int lua_isyieldable (lua_State *L) {
593} 593}
594 594
595 595
596LUA_API int lua_yieldk (lua_State *L, int nresults, lua_Ctx ctx, 596LUA_API int lua_yieldk (lua_State *L, int nresults, lua_Kcontext ctx,
597 lua_KFunction k) { 597 lua_KFunction k) {
598 CallInfo *ci = L->ci; 598 CallInfo *ci = L->ci;
599 luai_userstateyield(L, nresults); 599 luai_userstateyield(L, nresults);