new implementation for userdatas, without `keys'

This commit is contained in:
Roberto Ierusalimschy
2001-06-06 15:00:19 -03:00
parent da673d31aa
commit d5b83ead90
17 changed files with 215 additions and 220 deletions

4
ltm.h
View File

@@ -1,5 +1,5 @@
/*
** $Id: ltm.h,v 1.23 2001/02/09 20:22:29 roberto Exp roberto $
** $Id: ltm.h,v 1.24 2001/02/23 17:17:25 roberto Exp roberto $
** Tag methods
** See Copyright Notice in lua.h
*/
@@ -53,7 +53,7 @@ typedef enum {
struct TM {
Closure *method[TM_N];
TString *collected; /* list of garbage-collected udata with this tag */
Udata *collected; /* list of garbage-collected udata with this tag */
TString *name; /* type name */
int basictype;
};