aboutsummaryrefslogtreecommitdiff
path: root/ltm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-04-26 10:08:29 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-04-26 10:08:29 -0300
commita2f5c28a802ae99f2045ab96585fade2c65b2037 (patch)
treeeb2ab3d1fc8dc2084505ed4286502ed75b6721ba /ltm.h
parenta80a2b5e561b50c1f64e96c3692614611a325aba (diff)
downloadlua-a2f5c28a802ae99f2045ab96585fade2c65b2037.tar.gz
lua-a2f5c28a802ae99f2045ab96585fade2c65b2037.tar.bz2
lua-a2f5c28a802ae99f2045ab96585fade2c65b2037.zip
new operation '//' (integer division)
Diffstat (limited to 'ltm.h')
-rw-r--r--ltm.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ltm.h b/ltm.h
index 3ff68cc7..8f088528 100644
--- a/ltm.h
+++ b/ltm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.h,v 2.13 2013/04/25 15:59:42 roberto Exp roberto $ 2** $Id: ltm.h,v 2.14 2013/04/25 16:07:52 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*/
@@ -26,6 +26,7 @@ typedef enum {
26 TM_SUB, 26 TM_SUB,
27 TM_MUL, 27 TM_MUL,
28 TM_DIV, 28 TM_DIV,
29 TM_IDIV,
29 TM_MOD, 30 TM_MOD,
30 TM_POW, 31 TM_POW,
31 TM_UNM, 32 TM_UNM,