summaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-03-26 09:57:01 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-03-26 09:57:01 -0300
commit3dbf30540892b4b9c86e0cb663069cd478a0c900 (patch)
tree0a86ef692b04ce14b57734b0034452e32aadd610 /lobject.h
parent6d0ae11c576106b490a53215c3f227b65ace2776 (diff)
downloadlua-3dbf30540892b4b9c86e0cb663069cd478a0c900.tar.gz
lua-3dbf30540892b4b9c86e0cb663069cd478a0c900.tar.bz2
lua-3dbf30540892b4b9c86e0cb663069cd478a0c900.zip
no more support for old-style varargs
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/lobject.h b/lobject.h
index 8b60155f..3172cda6 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 2.23 2008/01/30 18:05:23 roberto Exp roberto $ 2** $Id: lobject.h,v 2.24 2008/08/05 19:26:23 roberto Exp roberto $
3** Type definitions for Lua objects 3** Type definitions for Lua objects
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -253,12 +253,6 @@ typedef struct Proto {
253} Proto; 253} Proto;
254 254
255 255
256/* masks for new-style vararg */
257#define VARARG_HASARG 1
258#define VARARG_ISVARARG 2
259#define VARARG_NEEDSARG 4
260
261
262typedef struct LocVar { 256typedef struct LocVar {
263 TString *varname; 257 TString *varname;
264 int startpc; /* first point where variable is active */ 258 int startpc; /* first point where variable is active */