diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-03-03 11:58:26 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-03-03 11:58:26 -0300 |
| commit | 3c9d999424520c809e05bee11d81788b488434f6 (patch) | |
| tree | 7556d9ea10bda42b226aec4dd956753467cc0864 /lvm.h | |
| parent | f7840a3e0bc07813246b2bad6bf4579848187908 (diff) | |
| download | lua-github-3c9d999424520c809e05bee11d81788b488434f6.tar.gz | |
many details (most by lhf).
Diffstat (limited to 'lvm.h')
| -rw-r--r-- | lvm.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ /* -** $Id: lvm.h,v 1.15 2000/01/24 20:14:07 roberto Exp roberto $ +** $Id: lvm.h,v 1.16 2000/02/22 18:12:46 roberto Exp roberto $ ** Lua virtual machine ** See Copyright Notice in lua.h */ @@ -13,8 +13,8 @@ #include "ltm.h" -#define tonumber(o) ((ttype(o) != LUA_T_NUMBER) && (luaV_tonumber(o) != 0)) -#define tostring(L, o) ((ttype(o) != LUA_T_STRING) && (luaV_tostring(L, o) != 0)) +#define tonumber(o) ((ttype(o) != LUA_T_NUMBER) && (luaV_tonumber(o) != 0)) +#define tostring(L,o) ((ttype(o) != LUA_T_STRING) && (luaV_tostring(L, o) != 0)) void luaV_pack (lua_State *L, StkId firstel, int nvararg, TObject *tab); |
