diff options
Diffstat (limited to 'lib/lua/includes')
-rw-r--r-- | lib/lua/includes/lstate.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/lua/includes/lstate.h b/lib/lua/includes/lstate.h index 1bbacfe..4bb8099 100644 --- a/lib/lua/includes/lstate.h +++ b/lib/lua/includes/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 1.8 2007-07-27 10:05:53 pixel Exp $ +** $Id: lstate.h,v 1.9 2008-02-17 00:35:20 pixel Exp $ ** Global State ** See Copyright Notice in lua.h */ @@ -112,6 +112,7 @@ struct lua_State { int stacksize; int size_ci; /* size of array `base_ci' */ unsigned short nCcalls; /* number of nested C calls */ + unsigned short baseCcalls; /* nested C calls when resuming coroutine */ lu_byte hookmask; lu_byte allowhook; int basehookcount; |