aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-10-31 15:54:35 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-10-31 15:54:35 -0200
commitc5482468fde11c6c169da3b331a0653455f8fc94 (patch)
tree2a48592c73f5a94f1615793d66cb7fcf1c5b8946 /lobject.h
parentad5dcdcf0f1e139c8cc5b1aafd11db69f54010de (diff)
downloadlua-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.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/lobject.h b/lobject.h
index 769be79d..e3ae0050 100644
--- a/lobject.h
+++ b/lobject.h
@@ -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
312typedef union StackValue { 312typedef 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