aboutsummaryrefslogtreecommitdiff
path: root/lvm.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2007-02-09 11:04:52 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2007-02-09 11:04:52 -0200
commit08f902cf495752494088392a86f11a22755cc8cb (patch)
tree93aa40d1584b07f9bb3d74ab148d755e0044e041 /lvm.c
parentd3c304e92e5581bb7b8b7c5a61beb0a6faa108c2 (diff)
downloadlua-08f902cf495752494088392a86f11a22755cc8cb.tar.gz
lua-08f902cf495752494088392a86f11a22755cc8cb.tar.bz2
lua-08f902cf495752494088392a86f11a22755cc8cb.zip
better documentation for auxiliary functions (that should be called only
through specific macros).
Diffstat (limited to 'lvm.c')
-rw-r--r--lvm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lvm.c b/lvm.c
index f15f7688..d0fa8c87 100644
--- a/lvm.c
+++ b/lvm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.c,v 2.68 2006/09/19 13:57:50 roberto Exp roberto $ 2** $Id: lvm.c,v 2.69 2006/09/19 14:06:45 roberto Exp roberto $
3** Lua virtual machine 3** Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -247,7 +247,7 @@ static int lessequal (lua_State *L, const TValue *l, const TValue *r) {
247} 247}
248 248
249 249
250int luaV_equalval (lua_State *L, const TValue *t1, const TValue *t2) { 250int luaV_equalval_ (lua_State *L, const TValue *t1, const TValue *t2) {
251 const TValue *tm; 251 const TValue *tm;
252 lua_assert(ttype(t1) == ttype(t2)); 252 lua_assert(ttype(t1) == ttype(t2));
253 switch (ttype(t1)) { 253 switch (ttype(t1)) {