functions 'getfenv' and 'setfenv' are deprecated

This commit is contained in:
Roberto Ierusalimschy
2009-11-16 13:51:03 -02:00
parent b9063a08f5
commit c5050b1c41
2 changed files with 23 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: luaconf.h,v 1.111 2009/10/11 20:02:19 roberto Exp roberto $
** $Id: luaconf.h,v 1.112 2009/10/23 12:31:12 roberto Exp roberto $
** Configuration file for Lua
** See Copyright Notice in lua.h
*/
@@ -328,6 +328,14 @@
** ===================================================================
*/
/*
@@ LUA_COMPAT_FENV controls de presence of functions 'setfenv/getfenv'.
** CHANGE it (undefine it) if as soon as you rewrite your code to
** avoid using those functions. (You can replace them with lexical
** environments, 'loadin', or the debug library.)
*/
/* #define LUA_COMPAT_FENV */
/*
@@ LUA_COMPAT_LOG10 defines the function 'log10' in the math library.
** CHANGE it (undefine it) if as soon as you rewrite all calls 'log10(x)'