diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-10-29 13:38:24 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-10-29 13:38:24 -0200 |
commit | 351a446ec55d0e4a7520791cc4b6ff6097739e18 (patch) | |
tree | 0a9eae15e03222a6317e099ebcc1260049a5e16a /llex.h | |
parent | e9885efc7c6ef785811c09e1576fb00540ace22c (diff) | |
download | lua-351a446ec55d0e4a7520791cc4b6ff6097739e18.tar.gz lua-351a446ec55d0e4a7520791cc4b6ff6097739e18.tar.bz2 lua-351a446ec55d0e4a7520791cc4b6ff6097739e18.zip |
definition for 'LUA_ENV' moved from 'luaconf.h' to here (no need to
be visible outside Lua + no need for easy redefinitions)
Diffstat (limited to 'llex.h')
-rw-r--r-- | llex.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.h,v 1.76 2013/12/30 20:47:58 roberto Exp roberto $ | 2 | ** $Id: llex.h,v 1.77 2014/10/25 11:50:46 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 | */ |
@@ -14,6 +14,10 @@ | |||
14 | #define FIRST_RESERVED 257 | 14 | #define FIRST_RESERVED 257 |
15 | 15 | ||
16 | 16 | ||
17 | #if !defined(LUA_ENV) | ||
18 | #define LUA_ENV "_ENV" | ||
19 | #endif | ||
20 | |||
17 | 21 | ||
18 | /* | 22 | /* |
19 | * WARNING: if you change the order of this enumeration, | 23 | * WARNING: if you change the order of this enumeration, |