aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lobject.h b/lobject.h
index 87afb761..a5eb77d7 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 1.47 2000/02/14 16:51:08 roberto Exp roberto $ 2** $Id: lobject.h,v 1.48 2000/02/17 18:30:36 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*/
@@ -163,9 +163,9 @@ typedef struct TProtoFunc {
163 Instruction *code; /* ends with opcode ENDCODE */ 163 Instruction *code; /* ends with opcode ENDCODE */
164 int lineDefined; 164 int lineDefined;
165 TaggedString *source; 165 TaggedString *source;
166 short numparams; 166 int numparams;
167 short is_vararg; 167 int is_vararg;
168 short maxstacksize; 168 int maxstacksize;
169 struct LocVar *locvars; /* ends with line = -1 */ 169 struct LocVar *locvars; /* ends with line = -1 */
170} TProtoFunc; 170} TProtoFunc;
171 171