summaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-07-25 12:18:19 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-07-25 12:18:19 -0300
commit8b7cf8c62d0a3d20bfc8741a66d8c2447c847bd3 (patch)
tree6e91b533df43594cd6341c7dc149407b54ba7759 /lua.h
parent73b0a3451d0bd59f1540271aa3b8d8de36b36580 (diff)
downloadlua-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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua.h b/lua.h
index 9b3c10ef..d17d8dc3 100644
--- a/lua.h
+++ b/lua.h
@@ -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);
217LUA_API void (lua_createtable) (lua_State *L, int narr, int nrec); 217LUA_API void (lua_createtable) (lua_State *L, int narr, int nrec);
218LUA_API void *(lua_newuserdata) (lua_State *L, size_t sz); 218LUA_API void *(lua_newuserdata) (lua_State *L, size_t sz);
219LUA_API int (lua_getmetatable) (lua_State *L, int objindex); 219LUA_API int (lua_getmetatable) (lua_State *L, int objindex);
220LUA_API void (lua_getenv) (lua_State *L, int idx); 220LUA_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);
228LUA_API void (lua_rawset) (lua_State *L, int idx); 228LUA_API void (lua_rawset) (lua_State *L, int idx);
229LUA_API void (lua_rawseti) (lua_State *L, int idx, int n); 229LUA_API void (lua_rawseti) (lua_State *L, int idx, int n);
230LUA_API int (lua_setmetatable) (lua_State *L, int objindex); 230LUA_API int (lua_setmetatable) (lua_State *L, int objindex);
231LUA_API void (lua_setenv) (lua_State *L, int idx); 231LUA_API void (lua_setuservalue) (lua_State *L, int idx);
232 232
233 233
234/* 234/*