diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-05-11 17:08:20 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-05-11 17:08:20 -0300 |
commit | 705eae9fe49956ec8247cc8737b908e84d25bb9f (patch) | |
tree | a7b2ea9cba341ac3d4e18714f3b28a603dff1d2b /lstate.h | |
parent | 6eb1399a1c662f45ab5511a5e7d35fdb967ec076 (diff) | |
download | lua-705eae9fe49956ec8247cc8737b908e84d25bb9f.tar.gz lua-705eae9fe49956ec8247cc8737b908e84d25bb9f.tar.bz2 lua-705eae9fe49956ec8247cc8737b908e84d25bb9f.zip |
there is no need for a size for Cblocks
Diffstat (limited to 'lstate.h')
-rw-r--r-- | lstate.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstate.h,v 1.17 1999/05/10 13:54:01 roberto Exp roberto $ | 2 | ** $Id: lstate.h,v 1.18 1999/05/11 14:19:32 roberto Exp roberto $ |
3 | ** Global State | 3 | ** Global State |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -68,7 +68,6 @@ struct lua_State { | |||
68 | int Mbuffsize; /* size of Mbuffer */ | 68 | int Mbuffsize; /* size of Mbuffer */ |
69 | int Mbuffnext; /* next position to fill in Mbuffer */ | 69 | int Mbuffnext; /* next position to fill in Mbuffer */ |
70 | struct C_Lua_Stack *Cblocks; | 70 | struct C_Lua_Stack *Cblocks; |
71 | int sizeCblocks; /* size of Cblocks */ | ||
72 | int numCblocks; /* number of nested Cblocks */ | 71 | int numCblocks; /* number of nested Cblocks */ |
73 | int debug; | 72 | int debug; |
74 | lua_CHFunction callhook; | 73 | lua_CHFunction callhook; |