From 351a446ec55d0e4a7520791cc4b6ff6097739e18 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 29 Oct 2014 13:38:24 -0200 Subject: definition for 'LUA_ENV' moved from 'luaconf.h' to here (no need to be visible outside Lua + no need for easy redefinitions) --- llex.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/llex.h b/llex.h index 21e3e8ca..8ca33b4a 100644 --- a/llex.h +++ b/llex.h @@ -1,5 +1,5 @@ /* -** $Id: llex.h,v 1.76 2013/12/30 20:47:58 roberto Exp roberto $ +** $Id: llex.h,v 1.77 2014/10/25 11:50:46 roberto Exp roberto $ ** Lexical Analyzer ** See Copyright Notice in lua.h */ @@ -14,6 +14,10 @@ #define FIRST_RESERVED 257 +#if !defined(LUA_ENV) +#define LUA_ENV "_ENV" +#endif + /* * WARNING: if you change the order of this enumeration, -- cgit v1.2.3-55-g6feb