diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-03-08 17:10:05 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-03-08 17:10:05 -0300 |
commit | f8df21bd2071c4e3729d37d1552f54ca2742551a (patch) | |
tree | 6d85e7fd9f86bfb6879c0edd60780b1f40325027 /lparser.h | |
parent | d3902cfa81021bca0a8c30b3ad79a1e2367f6621 (diff) | |
download | lua-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.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 | ||