diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-04-08 16:17:36 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-04-08 16:17:36 -0300 |
commit | 19fbdf6cae4c5186a498eb7a2fcc128804a9c3d5 (patch) | |
tree | e36890f7302eef1d9bc0eb5199a58b441f2c738c /lauxlib.h | |
parent | 427ee519db76b7a0747b5fc1d5dcf97092b5c0bf (diff) | |
download | lua-19fbdf6cae4c5186a498eb7a2fcc128804a9c3d5.tar.gz lua-19fbdf6cae4c5186a498eb7a2fcc128804a9c3d5.tar.bz2 lua-19fbdf6cae4c5186a498eb7a2fcc128804a9c3d5.zip |
'luaL_findtable' -> 'luaL_getsubtable'
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lauxlib.h,v 1.114 2011/01/10 15:51:42 roberto Exp roberto $ | 2 | ** $Id: lauxlib.h,v 1.115 2011/03/03 16:34:46 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 | */ |
@@ -86,7 +86,7 @@ LUALIB_API const char *(luaL_gsub) (lua_State *L, const char *s, const char *p, | |||
86 | 86 | ||
87 | LUALIB_API void (luaL_setfuncs) (lua_State *L, const luaL_Reg *l, int nup); | 87 | LUALIB_API void (luaL_setfuncs) (lua_State *L, const luaL_Reg *l, int nup); |
88 | 88 | ||
89 | LUALIB_API int (luaL_findtable) (lua_State *L, int idx, const char *fname); | 89 | LUALIB_API int (luaL_getsubtable) (lua_State *L, int idx, const char *fname); |
90 | 90 | ||
91 | LUALIB_API void (luaL_traceback) (lua_State *L, lua_State *L1, | 91 | LUALIB_API void (luaL_traceback) (lua_State *L, lua_State *L1, |
92 | const char *msg, int level); | 92 | const char *msg, int level); |