diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-06-19 13:14:09 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-06-19 13:14:09 -0300 |
commit | 9618aaf07d0d82ccbac91db22cb42451ec17d7ed (patch) | |
tree | 199314fbf7462d174921c71af389da14b4f6c595 /llex.h | |
parent | bec9bc4154e54fbc19b134874f6301f1e4654d5d (diff) | |
download | lua-9618aaf07d0d82ccbac91db22cb42451ec17d7ed.tar.gz lua-9618aaf07d0d82ccbac91db22cb42451ec17d7ed.tar.bz2 lua-9618aaf07d0d82ccbac91db22cb42451ec17d7ed.zip |
small corrections in comments
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 | ||