diff options
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.285 2013/03/15 13:04:22 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.286 2013/04/25 13:52:49 roberto Exp roberto $ |
3 | ** Lua - A Scripting Language | 3 | ** Lua - A Scripting Language |
4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) | 4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) |
5 | ** See Copyright Notice at the end of this file | 5 | ** See Copyright Notice at the end of this file |
@@ -186,9 +186,10 @@ LUA_API const void *(lua_topointer) (lua_State *L, int idx); | |||
186 | #define LUA_OPSUB 1 | 186 | #define LUA_OPSUB 1 |
187 | #define LUA_OPMUL 2 | 187 | #define LUA_OPMUL 2 |
188 | #define LUA_OPDIV 3 | 188 | #define LUA_OPDIV 3 |
189 | #define LUA_OPMOD 4 | 189 | #define LUA_OPIDIV 4 |
190 | #define LUA_OPPOW 5 | 190 | #define LUA_OPMOD 5 |
191 | #define LUA_OPUNM 6 | 191 | #define LUA_OPPOW 6 |
192 | #define LUA_OPUNM 7 | ||
192 | 193 | ||
193 | LUA_API void (lua_arith) (lua_State *L, int op); | 194 | LUA_API void (lua_arith) (lua_State *L, int op); |
194 | 195 | ||