there is no need for a size for Cblocks

This commit is contained in:
Roberto Ierusalimschy
1999-05-11 17:08:20 -03:00
parent 6eb1399a1c
commit 705eae9fe4
3 changed files with 12 additions and 23 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lstate.h,v 1.17 1999/05/10 13:54:01 roberto Exp roberto $
** $Id: lstate.h,v 1.18 1999/05/11 14:19:32 roberto Exp roberto $
** Global State
** See Copyright Notice in lua.h
*/
@@ -68,7 +68,6 @@ struct lua_State {
int Mbuffsize; /* size of Mbuffer */
int Mbuffnext; /* next position to fill in Mbuffer */
struct C_Lua_Stack *Cblocks;
int sizeCblocks; /* size of Cblocks */
int numCblocks; /* number of nested Cblocks */
int debug;
lua_CHFunction callhook;