aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--table.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/table.c b/table.c
index d3fb89c3..7f3bc2c0 100644
--- a/table.c
+++ b/table.c
@@ -3,7 +3,7 @@
3** Module to control static tables 3** Module to control static tables
4*/ 4*/
5 5
6char *rcs_table="$Id: table.c,v 2.29 1995/05/02 18:43:03 roberto Exp roberto $"; 6char *rcs_table="$Id: table.c,v 2.30 1995/05/16 17:23:58 roberto Exp celes $";
7 7
8#include <string.h> 8#include <string.h>
9 9
@@ -33,8 +33,8 @@ static Long lua_maxconstant = 0;
33char *lua_file[MAXFILE]; 33char *lua_file[MAXFILE];
34int lua_nfile; 34int lua_nfile;
35 35
36#define GARBAGE_BLOCK 256 36#define GARBAGE_BLOCK 1024
37#define MIN_GARBAGE_BLOCK 10 37#define MIN_GARBAGE_BLOCK (GARBAGE_BLOCK/2)
38 38
39static void lua_nextvar (void); 39static void lua_nextvar (void);
40static void setglobal (void); 40static void setglobal (void);