aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lobject.h b/lobject.h
index 8b93f70a..581a25a0 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 2.28 2009/07/15 18:37:19 roberto Exp roberto $ 2** $Id: lobject.h,v 2.29 2009/09/28 16:32:50 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*/
@@ -261,6 +261,7 @@ typedef struct Proto {
261 lu_byte numparams; 261 lu_byte numparams;
262 lu_byte is_vararg; 262 lu_byte is_vararg;
263 lu_byte maxstacksize; 263 lu_byte maxstacksize;
264 lu_byte envreg; /* register in outer function with initial environment */
264} Proto; 265} Proto;
265 266
266 267