aboutsummaryrefslogtreecommitdiff
path: root/ltm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-05-30 15:54:49 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-05-30 15:54:49 -0300
commit50a82ec1b9adafa108756077b018925131f131e8 (patch)
tree0861e68fabf699e747fb99e635a66e7ff76ca122 /ltm.h
parented1751bc32bd295e27881e9d6f6bb17019d59c3e (diff)
downloadlua-50a82ec1b9adafa108756077b018925131f131e8.tar.gz
lua-50a82ec1b9adafa108756077b018925131f131e8.tar.bz2
lua-50a82ec1b9adafa108756077b018925131f131e8.zip
gc tag methods for udata are called in (reverse) tag order
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 be3e51e3..48acd59f 100644
--- a/ltm.h
+++ b/ltm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.h,v 1.11 2000/03/20 19:14:54 roberto Exp roberto $ 2** $Id: ltm.h,v 1.12 2000/03/30 16:41:51 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*/
@@ -37,6 +37,7 @@ typedef enum {
37 37
38struct IM { 38struct IM {
39 TObject int_method[IM_N]; 39 TObject int_method[IM_N];
40 TString *collected; /* list of G. collected udata with this tag */
40}; 41};
41 42
42 43