summaryrefslogtreecommitdiff
path: root/ltablib.c
diff options
context:
space:
mode:
Diffstat (limited to 'ltablib.c')
-rw-r--r--ltablib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltablib.c b/ltablib.c
index a9182d25..a319b6b2 100644
--- a/ltablib.c
+++ b/ltablib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltablib.c,v 1.32 2005/07/11 18:48:02 roberto Exp roberto $ 2** $Id: ltablib.c,v 1.33 2005/07/12 14:32:08 roberto Exp roberto $
3** Library for Table Manipulation 3** Library for Table Manipulation
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -250,7 +250,7 @@ static const luaL_reg tab_funcs[] = {
250 250
251 251
252LUALIB_API int luaopen_table (lua_State *L) { 252LUALIB_API int luaopen_table (lua_State *L) {
253 luaL_openlib(L, LUA_TABLIBNAME, tab_funcs, 0); 253 luaL_register(L, LUA_TABLIBNAME, tab_funcs);
254 return 1; 254 return 1;
255} 255}
256 256