eventtable' renamed to metatable'

This commit is contained in:
Roberto Ierusalimschy
2002-01-30 15:26:44 -02:00
parent 50e2952593
commit d6fd33e76f
13 changed files with 69 additions and 69 deletions

View File

@@ -120,7 +120,7 @@ typedef union TString {
typedef union Udata {
union L_Umaxalign dummy; /* ensures maximum alignment for `local' udata */
struct {
struct Table *eventtable;
struct Table *metatable;
void *value;
size_t len; /* least bit reserved for gc mark */
union Udata *next; /* chain for list of all udata */
@@ -221,7 +221,7 @@ typedef struct Node {
typedef struct Table {
struct Table *eventtable;
struct Table *metatable;
TObject *array; /* array part */
Node *node;
int sizearray; /* size of `array' array */