diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-07-25 12:18:19 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-07-25 12:18:19 -0300 |
commit | 8b7cf8c62d0a3d20bfc8741a66d8c2447c847bd3 (patch) | |
tree | 6e91b533df43594cd6341c7dc149407b54ba7759 /lua.h | |
parent | 73b0a3451d0bd59f1540271aa3b8d8de36b36580 (diff) | |
download | lua-8b7cf8c62d0a3d20bfc8741a66d8c2447c847bd3.tar.gz lua-8b7cf8c62d0a3d20bfc8741a66d8c2447c847bd3.tar.bz2 lua-8b7cf8c62d0a3d20bfc8741a66d8c2447c847bd3.zip |
'lua_[gs]etenv' -> 'lua_[gs]etuservalue'
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.271 2010/07/02 12:01:53 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.272 2010/07/25 15:02:41 roberto Exp roberto $ |
3 | ** Lua - A Scripting Language | 3 | ** Lua - A Scripting Language |
4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) | 4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) |
5 | ** See Copyright Notice at the end of this file | 5 | ** See Copyright Notice at the end of this file |
@@ -217,7 +217,7 @@ LUA_API void (lua_rawgeti) (lua_State *L, int idx, int n); | |||
217 | LUA_API void (lua_createtable) (lua_State *L, int narr, int nrec); | 217 | LUA_API void (lua_createtable) (lua_State *L, int narr, int nrec); |
218 | LUA_API void *(lua_newuserdata) (lua_State *L, size_t sz); | 218 | LUA_API void *(lua_newuserdata) (lua_State *L, size_t sz); |
219 | LUA_API int (lua_getmetatable) (lua_State *L, int objindex); | 219 | LUA_API int (lua_getmetatable) (lua_State *L, int objindex); |
220 | LUA_API void (lua_getenv) (lua_State *L, int idx); | 220 | LUA_API void (lua_getuservalue) (lua_State *L, int idx); |
221 | 221 | ||
222 | 222 | ||
223 | /* | 223 | /* |
@@ -228,7 +228,7 @@ LUA_API void (lua_setfield) (lua_State *L, int idx, const char *k); | |||
228 | LUA_API void (lua_rawset) (lua_State *L, int idx); | 228 | LUA_API void (lua_rawset) (lua_State *L, int idx); |
229 | LUA_API void (lua_rawseti) (lua_State *L, int idx, int n); | 229 | LUA_API void (lua_rawseti) (lua_State *L, int idx, int n); |
230 | LUA_API int (lua_setmetatable) (lua_State *L, int objindex); | 230 | LUA_API int (lua_setmetatable) (lua_State *L, int objindex); |
231 | LUA_API void (lua_setenv) (lua_State *L, int idx); | 231 | LUA_API void (lua_setuservalue) (lua_State *L, int idx); |
232 | 232 | ||
233 | 233 | ||
234 | /* | 234 | /* |