diff options
Diffstat (limited to 'llex.h')
-rw-r--r-- | llex.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.h,v 1.5 1997/12/02 12:43:44 roberto Exp roberto $ | 2 | ** $Id: llex.h,v 1.6 1997/12/17 20:48:58 roberto Exp roberto $ |
3 | ** Lexical Analizer | 3 | ** Lexical Analizer |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -28,8 +28,8 @@ typedef struct LexState { | |||
28 | int linenumber; /* input line counter */ | 28 | int linenumber; /* input line counter */ |
29 | int linelasttoken; /* line where last token was read */ | 29 | int linelasttoken; /* line where last token was read */ |
30 | int lastline; /* last line wherein a SETLINE was generated */ | 30 | int lastline; /* last line wherein a SETLINE was generated */ |
31 | struct ifState ifstate[MAX_IFS]; | ||
32 | int iflevel; /* level of nested $if's (for lexical analysis) */ | 31 | int iflevel; /* level of nested $if's (for lexical analysis) */ |
32 | struct ifState ifstate[MAX_IFS]; | ||
33 | } LexState; | 33 | } LexState; |
34 | 34 | ||
35 | 35 | ||