diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-09-30 12:38:37 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-09-30 12:38:37 -0300 |
commit | 0ac3d07ea64ce4bcb8b935fb80fbb2b72d6b8f43 (patch) | |
tree | 2463af169272845741337a44f03afd476a600609 /lobject.h | |
parent | 5938212748636d21d6f4b372481ab3b6dd6c7538 (diff) | |
download | lua-0ac3d07ea64ce4bcb8b935fb80fbb2b72d6b8f43.tar.gz lua-0ac3d07ea64ce4bcb8b935fb80fbb2b72d6b8f43.tar.bz2 lua-0ac3d07ea64ce4bcb8b935fb80fbb2b72d6b8f43.zip |
first implementation of lexical environments
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 | ||