diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-02-25 18:07:26 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-02-25 18:07:26 -0300 |
commit | 6a853fcb8b9e333d768c739c36c99b144bbde607 (patch) | |
tree | 5645e5fbe3a43f15044591be30c5d4607cb7357c /llex.h | |
parent | 31bea2190b25e5b6687d92d807af522378168bfa (diff) | |
download | lua-6a853fcb8b9e333d768c739c36c99b144bbde607.tar.gz lua-6a853fcb8b9e333d768c739c36c99b144bbde607.tar.bz2 lua-6a853fcb8b9e333d768c739c36c99b144bbde607.zip |
details (from lhf)
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 | }; |