From 13ab5a6bb1258d640bda2e6d776d5a38f3fa867b Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 2 Apr 2002 17:43:08 -0300 Subject: details --- lcode.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lcode.h') diff --git a/lcode.h b/lcode.h index ae4dd34f..4bc50c51 100644 --- a/lcode.h +++ b/lcode.h @@ -1,5 +1,5 @@ /* -** $Id: lcode.h,v 1.28 2002/03/08 19:10:32 roberto Exp roberto $ +** $Id: lcode.h,v 1.29 2002/03/21 20:31:43 roberto Exp roberto $ ** Code generator for Lua ** See Copyright Notice in lua.h */ @@ -26,7 +26,8 @@ typedef enum BinOpr { OPR_ADD, OPR_SUB, OPR_MULT, OPR_DIV, OPR_POW, OPR_CONCAT, - OPR_NE, OPR_EQ, OPR_LT, OPR_LE, OPR_GT, OPR_GE, + OPR_NE, OPR_EQ, + OPR_LT, OPR_LE, OPR_GT, OPR_GE, OPR_AND, OPR_OR, OPR_NOBINOPR } BinOpr; -- cgit v1.2.3-55-g6feb