summaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-07-21 21:59:36 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-07-21 21:59:36 -0300
commit45b173cbf89597123267a69bace778cf498d6c98 (patch)
tree561573acd810544ba8c743df0335e5fbe64f302c /llex.h
parenta94cba4b88a940cba7a35244b8a1b393f33a905c (diff)
downloadlua-45b173cbf89597123267a69bace778cf498d6c98.tar.gz
lua-45b173cbf89597123267a69bace778cf498d6c98.tar.bz2
lua-45b173cbf89597123267a69bace778cf498d6c98.zip
warnings/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 6d0cba47..f4577551 100644
--- a/llex.h
+++ b/llex.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.h,v 1.35 2001/03/06 14:46:54 roberto Exp roberto $ 2** $Id: llex.h,v 1.36 2001/06/20 21:07:57 roberto Exp roberto $
3** Lexical Analyzer 3** Lexical Analyzer
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -49,7 +49,7 @@ typedef struct Token {
49 49
50 50
51typedef struct LexState { 51typedef struct LexState {
52 int current; /* current character */ 52 l_charint current; /* current character */
53 Token t; /* current token */ 53 Token t; /* current token */
54 Token lookahead; /* look ahead token */ 54 Token lookahead; /* look ahead token */
55 struct FuncState *fs; /* `FuncState' is private to the parser */ 55 struct FuncState *fs; /* `FuncState' is private to the parser */