aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-05-11 17:08:20 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-05-11 17:08:20 -0300
commit705eae9fe49956ec8247cc8737b908e84d25bb9f (patch)
treea7b2ea9cba341ac3d4e18714f3b28a603dff1d2b /lstate.h
parent6eb1399a1c662f45ab5511a5e7d35fdb967ec076 (diff)
downloadlua-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.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lstate.h b/lstate.h
index 541c473d..2690a1f9 100644
--- a/lstate.h
+++ b/lstate.h
@@ -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;