luac´ -> luai' (to avoid confusion with other luac stuff)

This commit is contained in:
Roberto Ierusalimschy
2005-03-09 13:28:07 -03:00
parent f8df21bd20
commit 370d31a559
14 changed files with 126 additions and 126 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lparser.h,v 1.52 2005/03/07 16:58:27 roberto Exp roberto $
** $Id: lparser.h,v 1.53 2005/03/08 20:10:05 roberto Exp roberto $
** Lua Parser
** See Copyright Notice in lua.h
*/
@@ -67,8 +67,8 @@ typedef struct FuncState {
int np; /* number of elements in `p' */
short nlocvars; /* number of elements in `locvars' */
lu_byte nactvar; /* number of active local variables */
upvaldesc upvalues[LUAC_MAXUPVALUES]; /* upvalues */
unsigned short actvar[LUAC_MAXVARS]; /* declared-variable stack */
upvaldesc upvalues[LUAI_MAXUPVALUES]; /* upvalues */
unsigned short actvar[LUAI_MAXVARS]; /* declared-variable stack */
} FuncState;