diff options
Diffstat (limited to 'lapi.c')
-rw-r--r-- | lapi.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lapi.c,v 2.108 2010/01/04 18:17:51 roberto Exp roberto $ | 2 | ** $Id: lapi.c,v 2.109 2010/01/08 15:16:56 roberto Exp roberto $ |
3 | ** Lua API | 3 | ** Lua API |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -300,7 +300,8 @@ LUA_API void lua_arith (lua_State *L, int op) { | |||
300 | luaO_arith(op, nvalue(L->top - 2), nvalue(L->top - 1))); | 300 | luaO_arith(op, nvalue(L->top - 2), nvalue(L->top - 1))); |
301 | } | 301 | } |
302 | else | 302 | else |
303 | luaV_arith(L, L->top - 2, L->top - 2, L->top - 1, op - LUA_OPADD + TM_ADD); | 303 | luaV_arith(L, L->top - 2, L->top - 2, L->top - 1, |
304 | cast(TMS, op - LUA_OPADD + TM_ADD)); | ||
304 | L->top--; | 305 | L->top--; |
305 | lua_unlock(L); | 306 | lua_unlock(L); |
306 | } | 307 | } |