summaryrefslogtreecommitdiff
path: root/lib/lua/includes
diff options
context:
space:
mode:
authorpixel <pixel>2004-12-27 22:18:52 +0000
committerpixel <pixel>2004-12-27 22:18:52 +0000
commit4710572bf3f2fb202d0cb3dda95ef28c85ea1b81 (patch)
treebadd157b2b2c3f18553c793f49f1294dc0637372 /lib/lua/includes
parentecb5155dfed400c50b3b54a758d546b7754bcbf1 (diff)
adding C-closure wrapping to lua, and using it.
Diffstat (limited to 'lib/lua/includes')
-rw-r--r--lib/lua/includes/lstate.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/lua/includes/lstate.h b/lib/lua/includes/lstate.h
index dec40f5..8df9844 100644
--- a/lib/lua/includes/lstate.h
+++ b/lib/lua/includes/lstate.h
@@ -1,5 +1,5 @@
/*
-** $Id: lstate.h,v 1.5 2004-11-27 21:46:06 pixel Exp $
+** $Id: lstate.h,v 1.6 2004-12-27 22:18:53 pixel Exp $
** Global State
** See Copyright Notice in lua.h
*/
@@ -157,6 +157,7 @@ struct lua_State {
GCObject *gclist;
struct lua_longjmp *errorJmp; /* current error recover point */
ptrdiff_t errfunc; /* current error handling function (stack index) */
+ lua_CallWrap callwrap;
};