diff options
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 2.22 2007/04/10 12:18:17 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 2.23 2008/01/30 18:05:23 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 | */ |
@@ -208,7 +208,7 @@ typedef union TString { | |||
208 | 208 | ||
209 | 209 | ||
210 | #define getstr(ts) cast(const char *, (ts) + 1) | 210 | #define getstr(ts) cast(const char *, (ts) + 1) |
211 | #define svalue(o) getstr(tsvalue(o)) | 211 | #define svalue(o) getstr(rawtsvalue(o)) |
212 | 212 | ||
213 | 213 | ||
214 | 214 | ||