diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-08-26 14:32:05 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-08-26 14:32:05 -0300 |
commit | 9273fbd131eb0be7d4e7ca4f44345b41f8a557cf (patch) | |
tree | 1503563eb840378013125b4892b7686ac8d8787e /lauxlib.h | |
parent | be666a662b79e12c300dbf6d74d0a6626acac06f (diff) | |
download | lua-9273fbd131eb0be7d4e7ca4f44345b41f8a557cf.tar.gz lua-9273fbd131eb0be7d4e7ca4f44345b41f8a557cf.tar.bz2 lua-9273fbd131eb0be7d4e7ca4f44345b41f8a557cf.zip |
no more 'luaL_get/setfield' (replaced by more direct luaL_findtable)
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lauxlib.h,v 1.81 2005/08/15 14:12:32 roberto Exp roberto $ | 2 | ** $Id: lauxlib.h,v 1.82 2005/08/18 20:36:26 roberto Exp roberto $ |
3 | ** Auxiliary functions for building Lua libraries | 3 | ** Auxiliary functions for building Lua libraries |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -84,10 +84,9 @@ LUALIB_API lua_State *(luaL_newstate) (void); | |||
84 | 84 | ||
85 | LUALIB_API const char *(luaL_gsub) (lua_State *L, const char *s, const char *p, | 85 | LUALIB_API const char *(luaL_gsub) (lua_State *L, const char *s, const char *p, |
86 | const char *r); | 86 | const char *r); |
87 | LUALIB_API const char *(luaL_getfield) (lua_State *L, int idx, | 87 | |
88 | const char *fname); | 88 | LUALIB_API const char *(luaL_findtable) (lua_State *L, int idx, |
89 | LUALIB_API const char *(luaL_setfield) (lua_State *L, int idx, | 89 | const char *fname); |
90 | const char *fname); | ||
91 | 90 | ||
92 | 91 | ||
93 | 92 | ||