diff options
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 1.108 2001/06/28 14:48:44 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.109 2001/06/28 14:56:25 roberto Exp roberto $ |
3 | ** Type definitions for Lua objects | 3 | ** Type definitions for Lua objects |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -90,8 +90,7 @@ typedef union TString { | |||
90 | struct { | 90 | struct { |
91 | lu_hash hash; | 91 | lu_hash hash; |
92 | size_t len; | 92 | size_t len; |
93 | unsigned short constindex; /* hint to reuse constants */ | 93 | int marked; |
94 | short marked; | ||
95 | union TString *nexthash; /* chain for hash table */ | 94 | union TString *nexthash; /* chain for hash table */ |
96 | } tsv; | 95 | } tsv; |
97 | } TString; | 96 | } TString; |