aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lobject.h b/lobject.h
index e095f43f..7a9c0707 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 2.113 2015/09/08 16:54:52 roberto Exp roberto $ 2** $Id: lobject.h,v 2.114 2015/09/17 15:51:05 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*/
@@ -407,7 +407,7 @@ typedef struct LocVar {
407typedef struct Proto { 407typedef struct Proto {
408 CommonHeader; 408 CommonHeader;
409 lu_byte numparams; /* number of fixed parameters */ 409 lu_byte numparams; /* number of fixed parameters */
410 lu_byte is_vararg; 410 lu_byte is_vararg; /* 2: declared vararg; 1: uses vararg */
411 lu_byte maxstacksize; /* number of registers needed by this function */ 411 lu_byte maxstacksize; /* number of registers needed by this function */
412 int sizeupvalues; /* size of 'upvalues' */ 412 int sizeupvalues; /* size of 'upvalues' */
413 int sizek; /* size of 'k' */ 413 int sizek; /* size of 'k' */