aboutsummaryrefslogtreecommitdiff
path: root/ltm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-05-27 17:35:40 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-05-27 17:35:40 -0300
commit46c471d7e97292d923721655683affd7e8b314de (patch)
treec9ae53cc94b1cca209fd5af7f594d355d6c111a9 /ltm.h
parent859ecf36b6f96a5a0961f09c00cd98088081384c (diff)
downloadlua-46c471d7e97292d923721655683affd7e8b314de.tar.gz
lua-46c471d7e97292d923721655683affd7e8b314de.tar.bz2
lua-46c471d7e97292d923721655683affd7e8b314de.zip
new `__newindex' eventfield
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 ab6c375a..e6718492 100644
--- a/ltm.h
+++ b/ltm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.h,v 1.31 2002/01/09 21:50:35 roberto Exp roberto $ 2** $Id: ltm.h,v 1.32 2002/05/20 19:51:06 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*/
@@ -18,6 +18,7 @@ typedef enum {
18 TM_GETTABLE = 0, 18 TM_GETTABLE = 0,
19 TM_SETTABLE, 19 TM_SETTABLE,
20 TM_INDEX, 20 TM_INDEX,
21 TM_NEWINDEX,
21 TM_GC, 22 TM_GC,
22 TM_WEAKMODE, 23 TM_WEAKMODE,
23 TM_ADD, 24 TM_ADD,