aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-04-10 16:20:24 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-04-10 16:20:24 -0300
commitc3b73cbeb8c1f5588b0f516264ae34778975e6d6 (patch)
tree4ad6fd89dbf1c669cc7c643bb9ae04f4b4ee99ec
parent1eabd0549e165fe8e907afad9df314cbec3fab5d (diff)
downloadlua-c3b73cbeb8c1f5588b0f516264ae34778975e6d6.tar.gz
lua-c3b73cbeb8c1f5588b0f516264ae34778975e6d6.tar.bz2
lua-c3b73cbeb8c1f5588b0f516264ae34778975e6d6.zip
comments (detail)
-rw-r--r--lobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lobject.h b/lobject.h
index 09d43f6f..57ea2bd0 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 1.58 2000/03/30 20:55:50 roberto Exp roberto $ 2** $Id: lobject.h,v 1.59 2000/03/31 16:28:45 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*/
@@ -110,7 +110,7 @@ typedef struct TString {
110 unsigned long hash; 110 unsigned long hash;
111 int constindex; /* hint to reuse constants (= -1 if this is a userdata) */ 111 int constindex; /* hint to reuse constants (= -1 if this is a userdata) */
112 unsigned char marked; 112 unsigned char marked;
113 char str[1]; /* \0 byte already reserved */ 113 char str[1]; /* variable length string!! must be the last field! */
114} TString; 114} TString;
115 115
116 116