diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-03-26 17:58:11 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-03-26 17:58:11 -0300 |
commit | 064e406f67c0153999a5246deb1d616b06ee9bb0 (patch) | |
tree | f4483ab6ad6d55484829a0d8a27b8afa1768a36e /luaconf.h | |
parent | 5c87f61e6b1567400d2bd8f452939bb948f16dda (diff) | |
download | lua-064e406f67c0153999a5246deb1d616b06ee9bb0.tar.gz lua-064e406f67c0153999a5246deb1d616b06ee9bb0.tar.bz2 lua-064e406f67c0153999a5246deb1d616b06ee9bb0.zip |
no more fenvs!
Diffstat (limited to 'luaconf.h')
-rw-r--r-- | luaconf.h | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: luaconf.h,v 1.133 2010/02/18 19:18:41 roberto Exp roberto $ | 2 | ** $Id: luaconf.h,v 1.134 2010/03/03 18:53:02 roberto Exp roberto $ |
3 | ** Configuration file for Lua | 3 | ** Configuration file for Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -233,13 +233,6 @@ | |||
233 | #define lua_cpcall(L,f,u) \ | 233 | #define lua_cpcall(L,f,u) \ |
234 | (lua_pushlightuserdata(L,(u)), luaL_cpcall(L,(f),1,0)) | 234 | (lua_pushlightuserdata(L,(u)), luaL_cpcall(L,(f),1,0)) |
235 | 235 | ||
236 | /* | ||
237 | @@ LUA_COMPAT_FENV controls the presence of functions 'setfenv/getfenv'. | ||
238 | ** You can replace them with lexical environments, 'loadin', or the | ||
239 | ** debug library. | ||
240 | */ | ||
241 | #define LUA_COMPAT_FENV | ||
242 | |||
243 | 236 | ||
244 | /* | 237 | /* |
245 | @@ LUA_COMPAT_LOG10 defines the function 'log10' in the math library. | 238 | @@ LUA_COMPAT_LOG10 defines the function 'log10' in the math library. |