macro 'ngcotouv' is the same as 'gco2uv', so it was removed

This commit is contained in:
Roberto Ierusalimschy
2009-12-11 11:39:34 -02:00
parent 9db693a57c
commit 3a9ae612a4
2 changed files with 4 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lstate.h,v 2.49 2009/11/25 15:27:51 roberto Exp roberto $
** $Id: lstate.h,v 2.50 2009/11/26 11:39:20 roberto Exp roberto $
** Global State
** See Copyright Notice in lua.h
*/
@@ -204,7 +204,6 @@ union GCObject {
#define gco2t(o) check_exp((o)->gch.tt == LUA_TTABLE, &((o)->h))
#define gco2p(o) check_exp((o)->gch.tt == LUA_TPROTO, &((o)->p))
#define gco2uv(o) check_exp((o)->gch.tt == LUA_TUPVAL, &((o)->uv))
#define ngcotouv(o) check_exp((o)->gch.tt == LUA_TUPVAL, &((o)->uv))
#define gco2th(o) check_exp((o)->gch.tt == LUA_TTHREAD, &((o)->th))
/* macro to convert any Lua object into a GCObject */