aboutsummaryrefslogtreecommitdiff
path: root/lcode.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2006-03-21 16:28:03 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2006-03-21 16:28:03 -0300
commite1dda047b24600e67796279337db4be1d01cb673 (patch)
tree5cc76b91eab221659ea85223a1ff0984fa6b57a8 /lcode.h
parent2c8206d448fe05b94d3841e9e2472e78e6aadc13 (diff)
downloadlua-e1dda047b24600e67796279337db4be1d01cb673.tar.gz
lua-e1dda047b24600e67796279337db4be1d01cb673.tar.bz2
lua-e1dda047b24600e67796279337db4be1d01cb673.zip
unused macro
Diffstat (limited to 'lcode.h')
-rw-r--r--lcode.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lcode.h b/lcode.h
index 50adfb78..ff5ee27d 100644
--- a/lcode.h
+++ b/lcode.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lcode.h,v 1.46 2005/10/03 14:02:40 roberto Exp roberto $ 2** $Id: lcode.h,v 1.47 2005/11/08 19:44:31 roberto Exp roberto $
3** Code generator for Lua 3** Code generator for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -32,7 +32,6 @@ typedef enum BinOpr {
32 OPR_NOBINOPR 32 OPR_NOBINOPR
33} BinOpr; 33} BinOpr;
34 34
35#define binopistest(op) ((op) >= OPR_NE)
36 35
37typedef enum UnOpr { OPR_MINUS, OPR_NOT, OPR_LEN, OPR_NOUNOPR } UnOpr; 36typedef enum UnOpr { OPR_MINUS, OPR_NOT, OPR_LEN, OPR_NOUNOPR } UnOpr;
38 37