aboutsummaryrefslogtreecommitdiff
path: root/lapi.c
diff options
context:
space:
mode:
Diffstat (limited to 'lapi.c')
-rw-r--r--lapi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lapi.c b/lapi.c
index 9201aac4..b82706fd 100644
--- a/lapi.c
+++ b/lapi.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lapi.c,v 2.162 2012/05/22 17:50:39 roberto Exp roberto $ 2** $Id: lapi.c,v 2.163 2012/05/23 15:42:27 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*/
@@ -950,7 +950,7 @@ LUA_API int lua_pcallk (lua_State *L, int nargs, int nresults, int errfunc,
950 ci->u.c.k = k; /* save continuation */ 950 ci->u.c.k = k; /* save continuation */
951 ci->u.c.ctx = ctx; /* save context */ 951 ci->u.c.ctx = ctx; /* save context */
952 /* save information for error recovery */ 952 /* save information for error recovery */
953 ci->u.c.extra = savestack(L, c.func); 953 ci->extra = savestack(L, c.func);
954 ci->u.c.old_allowhook = L->allowhook; 954 ci->u.c.old_allowhook = L->allowhook;
955 ci->u.c.old_errfunc = L->errfunc; 955 ci->u.c.old_errfunc = L->errfunc;
956 L->errfunc = func; 956 L->errfunc = func;