diff options
Diffstat (limited to 'llex.h')
-rw-r--r-- | llex.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.h,v 1.9 1998/06/19 16:14:09 roberto Exp roberto $ | 2 | ** $Id: llex.h,v 1.10 1998/07/24 18:02:38 roberto Exp roberto $ |
3 | ** Lexical Analizer | 3 | ** Lexical Analyzer |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
6 | 6 | ||
@@ -30,7 +30,7 @@ enum RESERVED { | |||
30 | /* "ifstate" keeps the state of each nested $if the lexical is dealing with. */ | 30 | /* "ifstate" keeps the state of each nested $if the lexical is dealing with. */ |
31 | 31 | ||
32 | struct ifState { | 32 | struct ifState { |
33 | int elsepart; /* true if its in the $else part */ | 33 | int elsepart; /* true if it's in the $else part */ |
34 | int condition; /* true if $if condition is true */ | 34 | int condition; /* true if $if condition is true */ |
35 | int skip; /* true if part must be skipped */ | 35 | int skip; /* true if part must be skipped */ |
36 | }; | 36 | }; |