aboutsummaryrefslogtreecommitdiff
path: root/lparser.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-03-08 17:10:05 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-03-08 17:10:05 -0300
commitf8df21bd2071c4e3729d37d1552f54ca2742551a (patch)
tree6d85e7fd9f86bfb6879c0edd60780b1f40325027 /lparser.h
parentd3902cfa81021bca0a8c30b3ad79a1e2367f6621 (diff)
downloadlua-f8df21bd2071c4e3729d37d1552f54ca2742551a.tar.gz
lua-f8df21bd2071c4e3729d37d1552f54ca2742551a.tar.bz2
lua-f8df21bd2071c4e3729d37d1552f54ca2742551a.zip
`luaconf.h´ exports all its definitions always (so all of them
must have a lua/LUA prefix).
Diffstat (limited to 'lparser.h')
-rw-r--r--lparser.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lparser.h b/lparser.h
index 1b7cc524..1644ddd9 100644
--- a/lparser.h
+++ b/lparser.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lparser.h,v 1.51 2004/05/31 18:51:50 roberto Exp roberto $ 2** $Id: lparser.h,v 1.52 2005/03/07 16:58:27 roberto Exp roberto $
3** Lua Parser 3** Lua Parser
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -67,8 +67,8 @@ typedef struct FuncState {
67 int np; /* number of elements in `p' */ 67 int np; /* number of elements in `p' */
68 short nlocvars; /* number of elements in `locvars' */ 68 short nlocvars; /* number of elements in `locvars' */
69 lu_byte nactvar; /* number of active local variables */ 69 lu_byte nactvar; /* number of active local variables */
70 upvaldesc upvalues[MAXUPVALUES]; /* upvalues */ 70 upvaldesc upvalues[LUAC_MAXUPVALUES]; /* upvalues */
71 unsigned short actvar[MAXVARS]; /* declared-variable stack */ 71 unsigned short actvar[LUAC_MAXVARS]; /* declared-variable stack */
72} FuncState; 72} FuncState;
73 73
74 74