aboutsummaryrefslogtreecommitdiff
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-6ac047afc46cbee935587b5734ec37d2e667a598.tar.gz
lua-6ac047afc46cbee935587b5734ec37d2e667a598.tar.bz2
lua-6ac047afc46cbee935587b5734ec37d2e667a598.zip
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 @@
1/* 1/*
2** $Id: llex.h,v 1.5 1997/12/02 12:43:44 roberto Exp roberto $ 2** $Id: llex.h,v 1.6 1997/12/17 20:48:58 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*/
@@ -28,8 +28,8 @@ typedef struct LexState {
28 int linenumber; /* input line counter */ 28 int linenumber; /* input line counter */
29 int linelasttoken; /* line where last token was read */ 29 int linelasttoken; /* line where last token was read */
30 int lastline; /* last line wherein a SETLINE was generated */ 30 int lastline; /* last line wherein a SETLINE was generated */
31 struct ifState ifstate[MAX_IFS];
32 int iflevel; /* level of nested $if's (for lexical analysis) */ 31 int iflevel; /* level of nested $if's (for lexical analysis) */
32 struct ifState ifstate[MAX_IFS];
33} LexState; 33} LexState;
34 34
35 35