aboutsummaryrefslogtreecommitdiff
path: root/lauxlib.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-06-30 14:40:27 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-06-30 14:40:27 -0300
commita139e2e003e0b62b7d34eeda20dd2354e74885f9 (patch)
tree7893fbccec3852dbf35321d2612074c2259570ef /lauxlib.h
parenta71c5f6f531a2503ff80e579e6c3bb95968645ba (diff)
downloadlua-a139e2e003e0b62b7d34eeda20dd2354e74885f9.tar.gz
lua-a139e2e003e0b62b7d34eeda20dd2354e74885f9.tar.bz2
lua-a139e2e003e0b62b7d34eeda20dd2354e74885f9.zip
old (and complex) luaL_findtable now used only in compatibility code
inside lauxlib.c
Diffstat (limited to 'lauxlib.h')
-rw-r--r--lauxlib.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/lauxlib.h b/lauxlib.h
index a7147cbc..d5728b58 100644
--- a/lauxlib.h
+++ b/lauxlib.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lauxlib.h,v 1.105 2010/05/04 17:21:08 roberto Exp roberto $ 2** $Id: lauxlib.h,v 1.106 2010/05/31 16:34:19 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*/
@@ -78,8 +78,7 @@ LUALIB_API int (luaL_len) (lua_State *L, int idx);
78LUALIB_API const char *(luaL_gsub) (lua_State *L, const char *s, const char *p, 78LUALIB_API const char *(luaL_gsub) (lua_State *L, const char *s, const char *p,
79 const char *r); 79 const char *r);
80 80
81LUALIB_API const char *(luaL_findtable) (lua_State *L, int idx, 81LUALIB_API void (luaL_findtable) (lua_State *L, int idx, const char *fname);
82 const char *fname, int szhint);
83 82
84LUALIB_API void (luaL_traceback) (lua_State *L, lua_State *L1, 83LUALIB_API void (luaL_traceback) (lua_State *L, lua_State *L1,
85 const char *msg, int level); 84 const char *msg, int level);