This commit is contained in:
Roberto Ierusalimschy
1998-01-09 12:57:43 -02:00
parent 0e1058cfdd
commit 6ac047afc4
6 changed files with 27 additions and 30 deletions

4
llex.h
View File

@@ -1,5 +1,5 @@
/*
** $Id: llex.h,v 1.5 1997/12/02 12:43:44 roberto Exp roberto $
** $Id: llex.h,v 1.6 1997/12/17 20:48:58 roberto Exp roberto $
** Lexical Analizer
** See Copyright Notice in lua.h
*/
@@ -28,8 +28,8 @@ typedef struct LexState {
int linenumber; /* input line counter */
int linelasttoken; /* line where last token was read */
int lastline; /* last line wherein a SETLINE was generated */
struct ifState ifstate[MAX_IFS];
int iflevel; /* level of nested $if's (for lexical analysis) */
struct ifState ifstate[MAX_IFS];
} LexState;