diff options
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 | ||