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.7 1998/01/09 14:57:43 roberto Exp $ | 2 | ** $Id: llex.h,v 1.8 1998/05/27 13:03:40 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 | */ |
@@ -32,7 +32,7 @@ enum RESERVED { | |||
32 | struct ifState { | 32 | struct ifState { |
33 | int elsepart; /* true if its in the $else part */ | 33 | int elsepart; /* true if its 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 skiped */ | 35 | int skip; /* true if part must be skipped */ |
36 | }; | 36 | }; |
37 | 37 | ||
38 | 38 | ||