diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-03-02 14:27:50 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-03-02 14:27:50 -0300 |
commit | 7b84f9e65c39542d16dc2b24bdfe5c07496f2042 (patch) | |
tree | a2f17d3ee9d40155bb12dbc096aa16a6414641fd /lobject.h | |
parent | 1e40b4dc615b7838305ea738bdd8e069adc0180f (diff) | |
download | lua-7b84f9e65c39542d16dc2b24bdfe5c07496f2042.tar.gz lua-7b84f9e65c39542d16dc2b24bdfe5c07496f2042.tar.bz2 lua-7b84f9e65c39542d16dc2b24bdfe5c07496f2042.zip |
lower-case for macros with arguments
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 1.98 2001/02/23 17:17:25 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.99 2001/02/23 20:32:32 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 | */ |
@@ -117,7 +117,7 @@ union L_UTString { | |||
117 | 117 | ||
118 | 118 | ||
119 | 119 | ||
120 | #define getstr(ts) ((l_char *)((lu_byte *)(ts) + sizeof(union L_UTString))) | 120 | #define getstr(ts) ((l_char *)((union L_UTString *)(ts) + 1)) |
121 | #define svalue(o) getstr(tsvalue(o)) | 121 | #define svalue(o) getstr(tsvalue(o)) |
122 | 122 | ||
123 | 123 | ||