diff options
Diffstat (limited to 'lopcodes.h')
-rw-r--r-- | lopcodes.h | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lopcodes.h,v 1.96 2002/05/06 15:51:41 roberto Exp roberto $ | 2 | ** $Id: lopcodes.h,v 1.97 2002/05/13 13:09:00 roberto Exp roberto $ |
3 | ** Opcodes for Lua virtual machine | 3 | ** Opcodes for Lua virtual machine |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -216,10 +216,9 @@ extern const lu_byte luaP_opmodes[NUM_OPCODES]; | |||
216 | #define testOpMode(m, b) (luaP_opmodes[m] & (1 << (b))) | 216 | #define testOpMode(m, b) (luaP_opmodes[m] & (1 << (b))) |
217 | 217 | ||
218 | 218 | ||
219 | /* | 219 | #ifdef LUA_OPNAMES |
220 | ** opcode names (only included when compiled with LUA_OPNAMES) | 220 | extern const char *const luaP_opnames[]; /* opcode names */ |
221 | */ | 221 | #endif |
222 | extern const char *const luaP_opnames[]; | ||
223 | 222 | ||
224 | 223 | ||
225 | 224 | ||