aboutsummaryrefslogtreecommitdiff
path: root/llimits.h
diff options
context:
space:
mode:
Diffstat (limited to 'llimits.h')
-rw-r--r--llimits.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/llimits.h b/llimits.h
index 22cfe305..9f6d6520 100644
--- a/llimits.h
+++ b/llimits.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llimits.h,v 1.38 2002/03/05 16:22:54 roberto Exp roberto $ 2** $Id: llimits.h,v 1.39 2002/03/07 18:11:51 roberto Exp roberto $
3** Limits, basic types, and some other `installation-dependent' definitions 3** Limits, basic types, and some other `installation-dependent' definitions
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -96,9 +96,9 @@ typedef unsigned long Instruction;
96#define MAXSTACK 250 96#define MAXSTACK 250
97 97
98 98
99/* maximum number of local variables */ 99/* maximum number of variables declared in a function */
100#ifndef MAXLOCALS 100#ifndef MAXVARS
101#define MAXLOCALS 200 /* arbitrary limit (<MAXSTACK) */ 101#define MAXVARS 200 /* arbitrary limit (<MAXSTACK) */
102#endif 102#endif
103 103
104 104