summaryrefslogtreecommitdiff
path: root/lauxlib.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-05-31 11:34:02 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-05-31 11:34:02 -0300
commitd628795940cb00420829077869c0efe5678b4e18 (patch)
tree882c6e993c7ffed27dcc142b2f15e88e95c5a073 /lauxlib.h
parent05348d834b48a4b0720d0576c797877b98642e63 (diff)
downloadlua-github-d628795940cb00420829077869c0efe5678b4e18.tar.gz
lua_objsize -> lua_objlen (more compatible with use of `lenĀ“ in other
places [opcode name, metamethod index, etc.])
Diffstat (limited to 'lauxlib.h')
-rw-r--r--lauxlib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lauxlib.h b/lauxlib.h
index 504fac97..e6a6dca3 100644
--- a/lauxlib.h
+++ b/lauxlib.h
@@ -1,5 +1,5 @@
/*
-** $Id: lauxlib.h,v 1.77 2005/05/25 13:21:26 roberto Exp roberto $
+** $Id: lauxlib.h,v 1.78 2005/05/31 14:25:18 roberto Exp roberto $
** Auxiliary functions for building Lua libraries
** See Copyright Notice in lua.h
*/
@@ -16,7 +16,7 @@
#if !defined(LUA_COMPAT_GETN)
-#define luaL_getn(L,i) ((int)lua_objsize(L, i))
+#define luaL_getn(L,i) ((int)lua_objlen(L, i))
#define luaL_setn(L,i,j) ((void)0) /* no op! */
#endif