diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2007-02-09 11:04:52 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2007-02-09 11:04:52 -0200 |
commit | 08f902cf495752494088392a86f11a22755cc8cb (patch) | |
tree | 93aa40d1584b07f9bb3d74ab148d755e0044e041 /lvm.c | |
parent | d3c304e92e5581bb7b8b7c5a61beb0a6faa108c2 (diff) | |
download | lua-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 | ||
250 | int luaV_equalval (lua_State *L, const TValue *t1, const TValue *t2) { | 250 | int 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)) { |