summaryrefslogtreecommitdiff
path: root/src/lobject.h
diff options
context:
space:
mode:
authorLua Team <team@lua.org>2004-09-02 12:00:00 +0000
committerrepogen <>2004-09-02 12:00:00 +0000
commit5d480731503a315eab9d6ab9426e3d4cfd5e52f8 (patch)
tree5606bf4c36fda4395d2bc1ea226227bcb80114b4 /src/lobject.h
parentced7bbbe7a257ce6de94069d5dbf6672aeafd4d9 (diff)
downloadlua-github-5d480731503a315eab9d6ab9426e3d4cfd5e52f8.tar.gz
Lua 5.1-work15.1-work1
Diffstat (limited to 'src/lobject.h')
-rw-r--r--src/lobject.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lobject.h b/src/lobject.h
index d5176a23..4b6a684b 100644
--- a/src/lobject.h
+++ b/src/lobject.h
@@ -1,5 +1,5 @@
/*
-** $Id: lobject.h,v 2.4 2004/03/15 21:04:33 roberto Exp $
+** $Id: lobject.h,v 2.5 2004/05/31 18:51:50 roberto Exp $
** Type definitions for Lua objects
** See Copyright Notice in lua.h
*/
@@ -249,6 +249,10 @@ typedef struct Proto {
} Proto;
+/* mask for new-style vararg */
+#define NEWSTYLEVARARG 2
+
+
typedef struct LocVar {
TString *varname;
int startpc; /* first point where variable is active */