lua

A copy of the Lua development repository
Log | Files | Refs | README

commit e1dda047b24600e67796279337db4be1d01cb673
parent 2c8206d448fe05b94d3841e9e2472e78e6aadc13
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Tue, 21 Mar 2006 16:27:40 -0300

unused macro

Diffstat:
Mlcode.h | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lcode.h b/lcode.h @@ -1,5 +1,5 @@ /* -** $Id: lcode.h,v 1.46 2005/10/03 14:02:40 roberto Exp roberto $ +** $Id: lcode.h,v 1.47 2005/11/08 19:44:31 roberto Exp roberto $ ** Code generator for Lua ** See Copyright Notice in lua.h */ @@ -32,7 +32,6 @@ typedef enum BinOpr { OPR_NOBINOPR } BinOpr; -#define binopistest(op) ((op) >= OPR_NE) typedef enum UnOpr { OPR_MINUS, OPR_NOT, OPR_LEN, OPR_NOUNOPR } UnOpr;