diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-02-24 13:54:20 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-02-24 13:54:20 -0300 |
commit | 5cd99b82b7fc11c527929e5e95f03767f6432d8e (patch) | |
tree | dc5e5dfb1731701dc91d14777d6e0e446324b4d6 /lua.h | |
parent | 07e210e6555b9930edc2f2fb21220f6f6769f110 (diff) | |
download | lua-5cd99b82b7fc11c527929e5e95f03767f6432d8e.tar.gz lua-5cd99b82b7fc11c527929e5e95f03767f6432d8e.tar.bz2 lua-5cd99b82b7fc11c527929e5e95f03767f6432d8e.zip |
`set/getenvtable' -> `set/getfenv'
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.171 2003/02/18 16:01:57 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.172 2003/02/18 16:13:15 roberto Exp roberto $ |
3 | ** Lua - An Extensible Extension Language | 3 | ** Lua - An Extensible Extension Language |
4 | ** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil | 4 | ** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil |
5 | ** http://www.lua.org mailto:info@lua.org | 5 | ** http://www.lua.org mailto:info@lua.org |
@@ -168,7 +168,7 @@ LUA_API void lua_rawget (lua_State *L, int idx); | |||
168 | LUA_API void lua_rawgeti (lua_State *L, int idx, int n); | 168 | LUA_API void lua_rawgeti (lua_State *L, int idx, int n); |
169 | LUA_API void lua_newtable (lua_State *L); | 169 | LUA_API void lua_newtable (lua_State *L); |
170 | LUA_API int lua_getmetatable (lua_State *L, int objindex); | 170 | LUA_API int lua_getmetatable (lua_State *L, int objindex); |
171 | LUA_API void lua_getenvtable (lua_State *L, int idx); | 171 | LUA_API void lua_getfenv (lua_State *L, int idx); |
172 | 172 | ||
173 | 173 | ||
174 | /* | 174 | /* |
@@ -178,7 +178,7 @@ LUA_API void lua_settable (lua_State *L, int idx); | |||
178 | LUA_API void lua_rawset (lua_State *L, int idx); | 178 | LUA_API void lua_rawset (lua_State *L, int idx); |
179 | LUA_API void lua_rawseti (lua_State *L, int idx, int n); | 179 | LUA_API void lua_rawseti (lua_State *L, int idx, int n); |
180 | LUA_API int lua_setmetatable (lua_State *L, int objindex); | 180 | LUA_API int lua_setmetatable (lua_State *L, int objindex); |
181 | LUA_API int lua_setenvtable (lua_State *L, int idx); | 181 | LUA_API int lua_setfenv (lua_State *L, int idx); |
182 | 182 | ||
183 | 183 | ||
184 | /* | 184 | /* |