lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 55d31383972aa29fff438973f91f88f372509281
parent e74e56f2b1ffe12b039aaf0b2415d5011957e740
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Mon, 11 Jan 2010 14:00:21 -0200

removed old prototype for 'luaI_openlib' (which does not exist anymore)

Diffstat:
Mlauxlib.h | 4+---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/lauxlib.h b/lauxlib.h @@ -1,5 +1,5 @@ /* -** $Id: lauxlib.h,v 1.97 2009/12/17 16:20:01 roberto Exp roberto $ +** $Id: lauxlib.h,v 1.98 2010/01/06 15:14:15 roberto Exp roberto $ ** Auxiliary functions for building Lua libraries ** See Copyright Notice in lua.h */ @@ -29,8 +29,6 @@ typedef struct luaL_Reg { LUALIB_API void (luaL_checkversion_) (lua_State *L, lua_Number ver); #define luaL_checkversion(L) luaL_checkversion_(L, LUA_VERSION_NUM) -LUALIB_API void (luaI_openlib) (lua_State *L, const char *libname, - const luaL_Reg *l, int nup); LUALIB_API void (luaL_register) (lua_State *L, const char *libname, const luaL_Reg *l); LUALIB_API int (luaL_getmetafield) (lua_State *L, int obj, const char *e);