no more support for old-style varargs

This commit is contained in:
Roberto Ierusalimschy
2009-03-26 09:57:01 -03:00
parent 6d0ae11c57
commit 3dbf305408
5 changed files with 10 additions and 51 deletions

View File

@@ -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 */