From 3a9ae612a4982e5f543baf8eead0889369eb8260 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 11 Dec 2009 11:39:34 -0200 Subject: macro 'ngcotouv' is the same as 'gco2uv', so it was removed --- lstate.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index 6e227404..45c95ea6 100644 --- a/lstate.h +++ b/lstate.h @@ -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 */ -- cgit v1.2.3-55-g6feb