diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-10-31 15:54:35 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-10-31 15:54:35 -0200 |
commit | c5482468fde11c6c169da3b331a0653455f8fc94 (patch) | |
tree | 2a48592c73f5a94f1615793d66cb7fcf1c5b8946 /lobject.h | |
parent | ad5dcdcf0f1e139c8cc5b1aafd11db69f54010de (diff) | |
download | lua-c5482468fde11c6c169da3b331a0653455f8fc94.tar.gz lua-c5482468fde11c6c169da3b331a0653455f8fc94.tar.bz2 lua-c5482468fde11c6c169da3b331a0653455f8fc94.zip |
baby steps to remove 'CallInfo': keeping 'L->func' correct
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 2.124 2017/06/27 11:35:31 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 2.125 2017/06/29 15:06:44 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 | */ |
@@ -311,6 +311,10 @@ typedef struct TValue { | |||
311 | 311 | ||
312 | typedef union StackValue { | 312 | typedef union StackValue { |
313 | TValue val; | 313 | TValue val; |
314 | struct { | ||
315 | TValuefields; | ||
316 | unsigned short previous; /* difference to previous 'func' */ | ||
317 | } stkci; | ||
314 | } StackValue; | 318 | } StackValue; |
315 | 319 | ||
316 | 320 | ||