diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-06-07 10:46:29 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-06-07 10:46:29 -0300 |
commit | 65c289b0465f717f907aa31ea7c68cf99e6420bf (patch) | |
tree | 28ec4901431b3a5319e9a5f39537694d9a7a671e /ldebug.h | |
parent | d5b83ead90fba27faa344c72406d85987d2460a4 (diff) | |
download | lua-65c289b0465f717f907aa31ea7c68cf99e6420bf.tar.gz lua-65c289b0465f717f907aa31ea7c68cf99e6420bf.tar.bz2 lua-65c289b0465f717f907aa31ea7c68cf99e6420bf.zip |
details
Diffstat (limited to 'ldebug.h')
-rw-r--r-- | ldebug.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldebug.h,v 1.11 2001/02/23 17:17:25 roberto Exp roberto $ | 2 | ** $Id: ldebug.h,v 1.12 2001/06/05 18:17:01 roberto Exp roberto $ |
3 | ** Auxiliary functions from Debug Interface module | 3 | ** Auxiliary functions from Debug Interface module |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -26,7 +26,7 @@ enum OpModeMask { | |||
26 | OpModeT /* operator is a test */ | 26 | OpModeT /* operator is a test */ |
27 | }; | 27 | }; |
28 | 28 | ||
29 | extern const unsigned char luaG_opmodes[]; | 29 | extern const lu_byte luaG_opmodes[]; |
30 | 30 | ||
31 | #define getOpMode(m) ((enum OpMode)(luaG_opmodes[m] & 3)) | 31 | #define getOpMode(m) ((enum OpMode)(luaG_opmodes[m] & 3)) |
32 | #define testOpMode(m, b) (luaG_opmodes[m] & (1 << (b))) | 32 | #define testOpMode(m, b) (luaG_opmodes[m] & (1 << (b))) |