aboutsummaryrefslogtreecommitdiff
path: root/lauxlib.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-08-26 14:32:05 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-08-26 14:32:05 -0300
commit9273fbd131eb0be7d4e7ca4f44345b41f8a557cf (patch)
tree1503563eb840378013125b4892b7686ac8d8787e /lauxlib.h
parentbe666a662b79e12c300dbf6d74d0a6626acac06f (diff)
downloadlua-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.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/lauxlib.h b/lauxlib.h
index b31b818e..7c1acaeb 100644
--- a/lauxlib.h
+++ b/lauxlib.h
@@ -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
85LUALIB_API const char *(luaL_gsub) (lua_State *L, const char *s, const char *p, 85LUALIB_API const char *(luaL_gsub) (lua_State *L, const char *s, const char *p,
86 const char *r); 86 const char *r);
87LUALIB_API const char *(luaL_getfield) (lua_State *L, int idx, 87
88 const char *fname); 88LUALIB_API const char *(luaL_findtable) (lua_State *L, int idx,
89LUALIB_API const char *(luaL_setfield) (lua_State *L, int idx, 89 const char *fname);
90 const char *fname);
91 90
92 91
93 92