diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-12-11 11:39:34 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-12-11 11:39:34 -0200 |
commit | 3a9ae612a4982e5f543baf8eead0889369eb8260 (patch) | |
tree | ff7388bce8d69a430eb1e88c6fc9a9c01da4db55 /lstate.h | |
parent | 9db693a57c07f22dc4d80e7b143a0d77c6229c05 (diff) | |
download | lua-3a9ae612a4982e5f543baf8eead0889369eb8260.tar.gz lua-3a9ae612a4982e5f543baf8eead0889369eb8260.tar.bz2 lua-3a9ae612a4982e5f543baf8eead0889369eb8260.zip |
macro 'ngcotouv' is the same as 'gco2uv', so it was removed
Diffstat (limited to 'lstate.h')
-rw-r--r-- | lstate.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstate.h,v 2.49 2009/11/25 15:27:51 roberto Exp roberto $ | 2 | ** $Id: lstate.h,v 2.50 2009/11/26 11:39:20 roberto Exp roberto $ |
3 | ** Global State | 3 | ** Global State |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -204,7 +204,6 @@ union GCObject { | |||
204 | #define gco2t(o) check_exp((o)->gch.tt == LUA_TTABLE, &((o)->h)) | 204 | #define gco2t(o) check_exp((o)->gch.tt == LUA_TTABLE, &((o)->h)) |
205 | #define gco2p(o) check_exp((o)->gch.tt == LUA_TPROTO, &((o)->p)) | 205 | #define gco2p(o) check_exp((o)->gch.tt == LUA_TPROTO, &((o)->p)) |
206 | #define gco2uv(o) check_exp((o)->gch.tt == LUA_TUPVAL, &((o)->uv)) | 206 | #define gco2uv(o) check_exp((o)->gch.tt == LUA_TUPVAL, &((o)->uv)) |
207 | #define ngcotouv(o) check_exp((o)->gch.tt == LUA_TUPVAL, &((o)->uv)) | ||
208 | #define gco2th(o) check_exp((o)->gch.tt == LUA_TTHREAD, &((o)->th)) | 207 | #define gco2th(o) check_exp((o)->gch.tt == LUA_TTHREAD, &((o)->th)) |
209 | 208 | ||
210 | /* macro to convert any Lua object into a GCObject */ | 209 | /* macro to convert any Lua object into a GCObject */ |