aboutsummaryrefslogtreecommitdiff
path: root/lparser.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-03-09 13:28:07 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-03-09 13:28:07 -0300
commit370d31a5593220723d222dec6e3e4019decc3309 (patch)
treee04ad903d079da2feea0b1759e89b65d1a70815c /lparser.h
parentf8df21bd2071c4e3729d37d1552f54ca2742551a (diff)
downloadlua-370d31a5593220723d222dec6e3e4019decc3309.tar.gz
lua-370d31a5593220723d222dec6e3e4019decc3309.tar.bz2
lua-370d31a5593220723d222dec6e3e4019decc3309.zip
`luacĀ“ -> `luai' (to avoid confusion with other luac stuff)
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 1644ddd9..ffcfca3c 100644
--- a/lparser.h
+++ b/lparser.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lparser.h,v 1.52 2005/03/07 16:58:27 roberto Exp roberto $ 2** $Id: lparser.h,v 1.53 2005/03/08 20:10:05 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[LUAC_MAXUPVALUES]; /* upvalues */ 70 upvaldesc upvalues[LUAI_MAXUPVALUES]; /* upvalues */
71 unsigned short actvar[LUAC_MAXVARS]; /* declared-variable stack */ 71 unsigned short actvar[LUAI_MAXVARS]; /* declared-variable stack */
72} FuncState; 72} FuncState;
73 73
74 74