diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-02-21 16:33:26 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-02-21 16:33:26 -0200 |
commit | 075da266e53868ae78dc4eebf8675592d312a67d (patch) | |
tree | 84b0e7d1bd97c6452938f69b2c98a07ce3b45e3a /lobject.h | |
parent | 228a62f799faba5e5c7181fe78a690b2ec63274c (diff) | |
download | lua-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.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 | ||