aboutsummaryrefslogtreecommitdiff
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 9ad7d3a0..504081bc 100644
--- a/ltablib.c
+++ b/ltablib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltablib.c,v 1.16 2002/11/14 15:41:38 roberto Exp roberto $ 2** $Id: ltablib.c,v 1.17 2002/12/04 17:38:31 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*/
@@ -296,6 +296,6 @@ LUALIB_API int lua_tablibopen (lua_State *L) {
296 lua_pushliteral(L, "k"); 296 lua_pushliteral(L, "k");
297 lua_rawset(L, -3); /* metatable(N).__mode = "k" */ 297 lua_rawset(L, -3); /* metatable(N).__mode = "k" */
298 luaL_openlib(L, LUA_TABLIBNAME, tab_funcs, 1); 298 luaL_openlib(L, LUA_TABLIBNAME, tab_funcs, 1);
299 return 0; 299 return 1;
300} 300}
301 301