summaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-03-13 12:55:42 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-03-13 12:55:42 -0300
commit22ef84b6c8d980eb869f414610f8ff5f25568ca7 (patch)
tree150de147a765e98015bfd4e8cd67f8bf3f157ef3 /llex.h
parent63a2b62468d2aabb1086a8c88d32ff96c658c96b (diff)
downloadlua-github-22ef84b6c8d980eb869f414610f8ff5f25568ca7.tar.gz
'_ENV' name permanently stored in global state for easier access
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/llex.h b/llex.h
index 7eb2f274..276802e0 100644
--- a/llex.h
+++ b/llex.h
@@ -1,5 +1,5 @@
/*
-** $Id: llex.h,v 1.62 2009/10/11 20:02:19 roberto Exp roberto $
+** $Id: llex.h,v 1.63 2010/03/08 16:55:52 roberto Exp roberto $
** Lexical Analyzer
** See Copyright Notice in lua.h
*/
@@ -60,7 +60,6 @@ typedef struct LexState {
Mbuffer *buff; /* buffer for tokens */
struct Varlist *varl; /* list of all active local variables */
TString *source; /* current source name */
- TString *envn; /* name of environment variable */
char decpoint; /* locale decimal point */
} LexState;