aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-02-21 16:33:26 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-02-21 16:33:26 -0200
commit075da266e53868ae78dc4eebf8675592d312a67d (patch)
tree84b0e7d1bd97c6452938f69b2c98a07ce3b45e3a /lobject.h
parent228a62f799faba5e5c7181fe78a690b2ec63274c (diff)
downloadlua-075da266e53868ae78dc4eebf8675592d312a67d.tar.gz
lua-075da266e53868ae78dc4eebf8675592d312a67d.tar.bz2
lua-075da266e53868ae78dc4eebf8675592d312a67d.zip
there is no need to use shorts...
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