From 3dbf30540892b4b9c86e0cb663069cd478a0c900 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 26 Mar 2009 09:57:01 -0300 Subject: no more support for old-style varargs --- lobject.h | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index 8b60155f..3172cda6 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 2.23 2008/01/30 18:05:23 roberto Exp roberto $ +** $Id: lobject.h,v 2.24 2008/08/05 19:26:23 roberto Exp roberto $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -253,12 +253,6 @@ typedef struct Proto { } Proto; -/* masks for new-style vararg */ -#define VARARG_HASARG 1 -#define VARARG_ISVARARG 2 -#define VARARG_NEEDSARG 4 - - typedef struct LocVar { TString *varname; int startpc; /* first point where variable is active */ -- cgit v1.2.3-55-g6feb