summaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-03-08 13:55:52 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-03-08 13:55:52 -0300
commit1124cb12474b4398384bdefbf12a0769521e17bb (patch)
tree3467e74b2628626204cc094e154a3e437a79f32e /llex.h
parentc2951478741efaddd34f468fe33a40a786371a3a (diff)
downloadlua-1124cb12474b4398384bdefbf12a0769521e17bb.tar.gz
lua-1124cb12474b4398384bdefbf12a0769521e17bb.tar.bz2
lua-1124cb12474b4398384bdefbf12a0769521e17bb.zip
first step towards _ENV: all chunks have an puvalues _ENV with the
global table
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