there is no need to use shorts...

This commit is contained in:
Roberto Ierusalimschy 2000-02-21 16:33:26 -02:00
parent 228a62f799
commit 075da266e5
1 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
/* /*
** $Id: lobject.h,v 1.47 2000/02/14 16:51:08 roberto Exp roberto $ ** $Id: lobject.h,v 1.48 2000/02/17 18:30:36 roberto Exp roberto $
** Type definitions for Lua objects ** Type definitions for Lua objects
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */
@ -163,9 +163,9 @@ typedef struct TProtoFunc {
Instruction *code; /* ends with opcode ENDCODE */ Instruction *code; /* ends with opcode ENDCODE */
int lineDefined; int lineDefined;
TaggedString *source; TaggedString *source;
short numparams; int numparams;
short is_vararg; int is_vararg;
short maxstacksize; int maxstacksize;
struct LocVar *locvars; /* ends with line = -1 */ struct LocVar *locvars; /* ends with line = -1 */
} TProtoFunc; } TProtoFunc;