summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/lobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lua/lobject.h')
-rw-r--r--apps/plugins/lua/lobject.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugins/lua/lobject.h b/apps/plugins/lua/lobject.h
index 028ff0355b..83651c2c47 100644
--- a/apps/plugins/lua/lobject.h
+++ b/apps/plugins/lua/lobject.h
@@ -240,7 +240,11 @@ typedef struct Proto {
240 TValue *k; /* constants used by the function */ 240 TValue *k; /* constants used by the function */
241 Instruction *code; 241 Instruction *code;
242 struct Proto **p; /* functions defined inside the function */ 242 struct Proto **p; /* functions defined inside the function */
243#ifdef LUA_OPTIMIZE_DEBUG
244 unsigned char *packedlineinfo;
245#else
243 int *lineinfo; /* map from opcodes to source lines */ 246 int *lineinfo; /* map from opcodes to source lines */
247#endif
244 struct LocVar *locvars; /* information about local variables */ 248 struct LocVar *locvars; /* information about local variables */
245 TString **upvalues; /* upvalue names */ 249 TString **upvalues; /* upvalue names */
246 TString *source; 250 TString *source;