summaryrefslogtreecommitdiff
path: root/ltm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-02-22 16:12:46 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-02-22 16:12:46 -0200
commit4d4e6f07c022f94999c52fb593a20fce85c5092a (patch)
tree538175d34df7d5fb0a24c6c4c03b07b34f8d2665 /ltm.h
parent5cecf0ea9f14d9ea5363654c429c3fd7d2c0e1a7 (diff)
downloadlua-4d4e6f07c022f94999c52fb593a20fce85c5092a.tar.gz
lua-4d4e6f07c022f94999c52fb593a20fce85c5092a.tar.bz2
lua-4d4e6f07c022f94999c52fb593a20fce85c5092a.zip
all order operators use a single tag method (<)
Diffstat (limited to 'ltm.h')
-rw-r--r--ltm.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/ltm.h b/ltm.h
index fde74b84..3d517e3e 100644
--- a/ltm.h
+++ b/ltm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.h,v 1.7 1999/09/20 14:57:29 roberto Exp roberto $ 2** $Id: ltm.h,v 1.8 1999/11/22 13:12:07 roberto Exp roberto $
3** Tag methods 3** Tag methods
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -28,15 +28,12 @@ typedef enum {
28 IM_POW, 28 IM_POW,
29 IM_UNM, 29 IM_UNM,
30 IM_LT, 30 IM_LT,
31 IM_LE,
32 IM_GT,
33 IM_GE,
34 IM_CONCAT, 31 IM_CONCAT,
35 IM_GC, 32 IM_GC,
36 IM_FUNCTION 33 IM_FUNCTION
37} IMS; 34} IMS;
38 35
39#define IM_N 18 36#define IM_N 15
40 37
41 38
42struct IM { 39struct IM {