aboutsummaryrefslogtreecommitdiff
path: root/ltablib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-07-12 11:32:08 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-07-12 11:32:08 -0300
commit80ac5e83fdc07d14c55056365aaf370436fbeb4e (patch)
treef4bf71357190c7e545a82fc48c93c03e12c9a75e /ltablib.c
parent289b5dc67ae79423b35347ef7f8277ebc42d704a (diff)
downloadlua-80ac5e83fdc07d14c55056365aaf370436fbeb4e.tar.gz
lua-80ac5e83fdc07d14c55056365aaf370436fbeb4e.tar.bz2
lua-80ac5e83fdc07d14c55056365aaf370436fbeb4e.zip
details (alphabetical order for list of functions)
Diffstat (limited to 'ltablib.c')
-rw-r--r--ltablib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ltablib.c b/ltablib.c
index 578c1264..a9182d25 100644
--- a/ltablib.c
+++ b/ltablib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltablib.c,v 1.31 2005/05/17 19:49:15 roberto Exp roberto $ 2** $Id: ltablib.c,v 1.32 2005/07/11 18:48:02 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*/
@@ -241,10 +241,10 @@ static const luaL_reg tab_funcs[] = {
241 {"foreach", foreach}, 241 {"foreach", foreach},
242 {"foreachi", foreachi}, 242 {"foreachi", foreachi},
243 {"getn", getn}, 243 {"getn", getn},
244 {"setn", setn},
245 {"sort", sort},
246 {"insert", tinsert}, 244 {"insert", tinsert},
247 {"remove", tremove}, 245 {"remove", tremove},
246 {"setn", setn},
247 {"sort", sort},
248 {NULL, NULL} 248 {NULL, NULL}
249}; 249};
250 250