aboutsummaryrefslogtreecommitdiff
path: root/src/lj_lex.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lj_lex.h')
-rw-r--r--src/lj_lex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lj_lex.h b/src/lj_lex.h
index 71a7c1de..3e76e72a 100644
--- a/src/lj_lex.h
+++ b/src/lj_lex.h
@@ -54,11 +54,11 @@ typedef struct LexState {
54 struct lua_State *L; /* Lua state. */ 54 struct lua_State *L; /* Lua state. */
55 TValue tokval; /* Current token value. */ 55 TValue tokval; /* Current token value. */
56 TValue lookaheadval; /* Lookahead token value. */ 56 TValue lookaheadval; /* Lookahead token value. */
57 const char *p; /* Current position in input buffer. */
58 const char *pe; /* End of input buffer. */
57 LexChar c; /* Current character. */ 59 LexChar c; /* Current character. */
58 LexToken tok; /* Current token. */ 60 LexToken tok; /* Current token. */
59 LexToken lookahead; /* Lookahead token. */ 61 LexToken lookahead; /* Lookahead token. */
60 MSize n; /* Bytes left in input buffer. */
61 const char *p; /* Current position in input buffer. */
62 SBuf sb; /* String buffer for tokens. */ 62 SBuf sb; /* String buffer for tokens. */
63 lua_Reader rfunc; /* Reader callback. */ 63 lua_Reader rfunc; /* Reader callback. */
64 void *rdata; /* Reader callback data. */ 64 void *rdata; /* Reader callback data. */