diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-03-13 12:55:42 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-03-13 12:55:42 -0300 |
commit | 22ef84b6c8d980eb869f414610f8ff5f25568ca7 (patch) | |
tree | 150de147a765e98015bfd4e8cd67f8bf3f157ef3 /llex.h | |
parent | 63a2b62468d2aabb1086a8c88d32ff96c658c96b (diff) | |
download | lua-22ef84b6c8d980eb869f414610f8ff5f25568ca7.tar.gz lua-22ef84b6c8d980eb869f414610f8ff5f25568ca7.tar.bz2 lua-22ef84b6c8d980eb869f414610f8ff5f25568ca7.zip |
'_ENV' name permanently stored in global state for easier access
Diffstat (limited to 'llex.h')
-rw-r--r-- | llex.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.h,v 1.62 2009/10/11 20:02:19 roberto Exp roberto $ | 2 | ** $Id: llex.h,v 1.63 2010/03/08 16:55:52 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,7 +60,6 @@ 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 */ | ||
64 | char decpoint; /* locale decimal point */ | 63 | char decpoint; /* locale decimal point */ |
65 | } LexState; | 64 | } LexState; |
66 | 65 | ||