diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-04-27 11:41:11 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-04-27 11:41:11 -0300 |
commit | e98ba351cebaec72f56acceddd82338cc37c3265 (patch) | |
tree | ed72629b9b4002fea51848d49b8b56310ca37d8d /lvm.h | |
parent | cbe4998bc29d5b98636f39cad5812c77a4fc2d77 (diff) | |
download | lua-e98ba351cebaec72f56acceddd82338cc37c3265.tar.gz lua-e98ba351cebaec72f56acceddd82338cc37c3265.tar.bz2 lua-e98ba351cebaec72f56acceddd82338cc37c3265.zip |
n^-m gives float result (instead of error)
Diffstat (limited to 'lvm.h')
-rw-r--r-- | lvm.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.h,v 2.27 2014/04/15 14:28:20 roberto Exp roberto $ | 2 | ** $Id: lvm.h,v 2.28 2014/04/15 16:32:49 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 | */ |
@@ -40,7 +40,7 @@ LUAI_FUNC void luaV_execute (lua_State *L); | |||
40 | LUAI_FUNC void luaV_concat (lua_State *L, int total); | 40 | LUAI_FUNC void luaV_concat (lua_State *L, int total); |
41 | LUAI_FUNC lua_Integer luaV_div (lua_State *L, lua_Integer x, lua_Integer y); | 41 | LUAI_FUNC lua_Integer luaV_div (lua_State *L, lua_Integer x, lua_Integer y); |
42 | LUAI_FUNC lua_Integer luaV_mod (lua_State *L, lua_Integer x, lua_Integer y); | 42 | LUAI_FUNC lua_Integer luaV_mod (lua_State *L, lua_Integer x, lua_Integer y); |
43 | LUAI_FUNC lua_Integer luaV_pow (lua_State *L, lua_Integer x, lua_Integer y); | 43 | LUAI_FUNC lua_Integer luaV_pow (lua_Integer x, lua_Integer y); |
44 | LUAI_FUNC lua_Integer luaV_shiftl (lua_Integer x, lua_Integer y); | 44 | LUAI_FUNC lua_Integer luaV_shiftl (lua_Integer x, lua_Integer y); |
45 | LUAI_FUNC void luaV_objlen (lua_State *L, StkId ra, const TValue *rb); | 45 | LUAI_FUNC void luaV_objlen (lua_State *L, StkId ra, const TValue *rb); |
46 | 46 | ||