aboutsummaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/llex.h b/llex.h
index 3228f0e1..7eb2f274 100644
--- a/llex.h
+++ b/llex.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.h,v 1.61 2007/10/25 16:45:47 roberto Exp roberto $ 2** $Id: llex.h,v 1.62 2009/10/11 20:02:19 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*/
@@ -60,6 +60,7 @@ typedef struct LexState {
60 Mbuffer *buff; /* buffer for tokens */ 60 Mbuffer *buff; /* buffer for tokens */
61 struct Varlist *varl; /* list of all active local variables */ 61 struct Varlist *varl; /* list of all active local variables */
62 TString *source; /* current source name */ 62 TString *source; /* current source name */
63 TString *envn; /* name of environment variable */
63 char decpoint; /* locale decimal point */ 64 char decpoint; /* locale decimal point */
64} LexState; 65} LexState;
65 66