summaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-01-09 12:57:43 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-01-09 12:57:43 -0200
commit6ac047afc46cbee935587b5734ec37d2e667a598 (patch)
tree9dd53dcde6b44b1b2593420a13cbd828261a690e /llex.h
parent0e1058cfdd07a3751fce1c79b75241cf770266cf (diff)
downloadlua-github-6ac047afc46cbee935587b5734ec37d2e667a598.tar.gz
details
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llex.h b/llex.h
index 7ebfa378..dcce5149 100644
--- a/llex.h
+++ b/llex.h
@@ -1,5 +1,5 @@
/*
-** $Id: llex.h,v 1.5 1997/12/02 12:43:44 roberto Exp roberto $
+** $Id: llex.h,v 1.6 1997/12/17 20:48:58 roberto Exp roberto $
** Lexical Analizer
** See Copyright Notice in lua.h
*/
@@ -28,8 +28,8 @@ typedef struct LexState {
int linenumber; /* input line counter */
int linelasttoken; /* line where last token was read */
int lastline; /* last line wherein a SETLINE was generated */
- struct ifState ifstate[MAX_IFS];
int iflevel; /* level of nested $if's (for lexical analysis) */
+ struct ifState ifstate[MAX_IFS];
} LexState;