aboutsummaryrefslogtreecommitdiff
path: root/lauxlib.h
diff options
context:
space:
mode:
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