summaryrefslogtreecommitdiff
path: root/src/lapi.c
diff options
context:
space:
mode:
authorLua Team <team@lua.org>2012-06-08 12:00:00 +0000
committerrepogen <>2012-06-08 12:00:00 +0000
commit8c898400a5ddff24ab5b69f79e2c70bab521511d (patch)
treeb773255b1ed3e8785f713b4e7dcaf3de81237f4d /src/lapi.c
parent850623c5e6a01fa1e8541c03b123fe6e35e02feb (diff)
downloadlua-github-5.2.1.tar.gz
Diffstat (limited to 'src/lapi.c')
-rw-r--r--src/lapi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lapi.c b/src/lapi.c
index 736d9648..1854fe61 100644
--- a/src/lapi.c
+++ b/src/lapi.c
@@ -1,5 +1,5 @@
/*
-** $Id: lapi.c,v 2.163 2012/05/23 15:42:27 roberto Exp $
+** $Id: lapi.c,v 2.164 2012/06/08 15:14:04 roberto Exp $
** Lua API
** See Copyright Notice in lua.h
*/
@@ -950,7 +950,7 @@ LUA_API int lua_pcallk (lua_State *L, int nargs, int nresults, int errfunc,
ci->u.c.k = k; /* save continuation */
ci->u.c.ctx = ctx; /* save context */
/* save information for error recovery */
- ci->u.c.extra = savestack(L, c.func);
+ ci->extra = savestack(L, c.func);
ci->u.c.old_allowhook = L->allowhook;
ci->u.c.old_errfunc = L->errfunc;
L->errfunc = func;