summaryrefslogtreecommitdiff
path: root/lvm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-06-17 13:17:14 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-06-17 13:17:14 -0300
commit77fd93188e7ba15f489ca5cf353d270627d93681 (patch)
treeb0af847d1b84625714123b7b8eb8e29d77df1d73 /lvm.h
parenta21c89ddc8b91c9fd4888577f7a6c60c4f640795 (diff)
downloadlua-77fd93188e7ba15f489ca5cf353d270627d93681.tar.gz
lua-77fd93188e7ba15f489ca5cf353d270627d93681.tar.bz2
lua-77fd93188e7ba15f489ca5cf353d270627d93681.zip
'lessequal' renamed 'luaV_lessequal' and exported to be used by
'lua_compare'
Diffstat (limited to 'lvm.h')
-rw-r--r--lvm.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lvm.h b/lvm.h
index 0b45ca0d..10009f97 100644
--- a/lvm.h
+++ b/lvm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.h,v 2.8 2009/03/10 17:14:37 roberto Exp $ 2** $Id: lvm.h,v 2.9 2009/05/27 17:11:27 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*/
@@ -26,6 +26,7 @@
26LUAI_FUNC int luaV_equalval_ (lua_State *L, const TValue *t1, const TValue *t2); 26LUAI_FUNC int luaV_equalval_ (lua_State *L, const TValue *t1, const TValue *t2);
27 27
28LUAI_FUNC int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r); 28LUAI_FUNC int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r);
29LUAI_FUNC int luaV_lessequal (lua_State *L, const TValue *l, const TValue *r);
29LUAI_FUNC const TValue *luaV_tonumber (const TValue *obj, TValue *n); 30LUAI_FUNC const TValue *luaV_tonumber (const TValue *obj, TValue *n);
30LUAI_FUNC int luaV_tostring (lua_State *L, StkId obj); 31LUAI_FUNC int luaV_tostring (lua_State *L, StkId obj);
31LUAI_FUNC void luaV_gettable (lua_State *L, const TValue *t, TValue *key, 32LUAI_FUNC void luaV_gettable (lua_State *L, const TValue *t, TValue *key,