Browse Source

bug: string at the end of TString must consider the entire TString
entity, not only its 'tsv' part

Roberto Ierusalimschy 17 years ago
parent
commit
bb92ef23cb
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lobject.h

+ 2 - 2
lobject.h

@@ -1,5 +1,5 @@
 /*
 /*
-** $Id: lobject.h,v 2.22 2007/04/10 12:18:17 roberto Exp roberto $
+** $Id: lobject.h,v 2.23 2008/01/30 18:05:23 roberto Exp roberto $
 ** Type definitions for Lua objects
 ** Type definitions for Lua objects
 ** See Copyright Notice in lua.h
 ** See Copyright Notice in lua.h
 */
 */
@@ -208,7 +208,7 @@ typedef union TString {
 
 
 
 
 #define getstr(ts)	cast(const char *, (ts) + 1)
 #define getstr(ts)	cast(const char *, (ts) + 1)
-#define svalue(o)       getstr(tsvalue(o))
+#define svalue(o)       getstr(rawtsvalue(o))