summaryrefslogtreecommitdiff
path: root/lauxlib.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-07-01 16:23:58 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-07-01 16:23:58 -0300
commitaa3da1605ceb50fe8353ecb7d03b6f074e131284 (patch)
tree8f57b48267660e3631368f8e579b5cd7816cab65 /lauxlib.h
parent9f4b5b52327497e3ce82cb0af1d94ad6c09b1da2 (diff)
downloadlua-aa3da1605ceb50fe8353ecb7d03b6f074e131284.tar.gz
lua-aa3da1605ceb50fe8353ecb7d03b6f074e131284.tar.bz2
lua-aa3da1605ceb50fe8353ecb7d03b6f074e131284.zip
`newproxy' uses its own weaktable
Diffstat (limited to 'lauxlib.h')
-rw-r--r--lauxlib.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/lauxlib.h b/lauxlib.h
index 438e6c20..e61e509a 100644
--- a/lauxlib.h
+++ b/lauxlib.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lauxlib.h,v 1.49 2002/06/18 15:19:27 roberto Exp roberto $ 2** $Id: lauxlib.h,v 1.50 2002/06/25 19:15:21 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*/
@@ -49,8 +49,6 @@ LUALIB_API int luaL_error (lua_State *L, const char *fmt, ...);
49LUALIB_API int luaL_findstring (const char *name, 49LUALIB_API int luaL_findstring (const char *name,
50 const char *const list[]); 50 const char *const list[]);
51 51
52LUALIB_API void luaL_weakregistry (lua_State *L);
53
54LUALIB_API int luaL_ref (lua_State *L, int t); 52LUALIB_API int luaL_ref (lua_State *L, int t);
55LUALIB_API void luaL_unref (lua_State *L, int t, int ref); 53LUALIB_API void luaL_unref (lua_State *L, int t, int ref);
56 54