From b1b752fb2ba8ad64a1defe7849202052be193fbb Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 28 Apr 2003 16:57:50 -0300 Subject: comments --- llimits.h | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'llimits.h') diff --git a/llimits.h b/llimits.h index 5490bb89..6ca0f676 100644 --- a/llimits.h +++ b/llimits.h @@ -1,5 +1,5 @@ /* -** $Id: llimits.h,v 1.52 2003/02/20 19:33:23 roberto Exp roberto $ +** $Id: llimits.h,v 1.53 2003/04/28 19:26:16 roberto Exp roberto $ ** Limits, basic types, and some other `installation-dependent' definitions ** See Copyright Notice in lua.h */ @@ -57,8 +57,6 @@ typedef LUA_UINT32 lu_int32; */ typedef lu_int32 lu_mem; -#define MAX_LUMEM ULONG_MAX - /* chars used as small naturals (so that `char' is reserved for characters) */ typedef unsigned char lu_byte; @@ -138,7 +136,7 @@ typedef lu_int32 Instruction; #endif -/* maximum size for the C stack */ +/* maximum size for the virtual stack of a C function */ #ifndef LUA_MAXCSTACK #define LUA_MAXCSTACK 2048 #endif @@ -150,19 +148,19 @@ typedef lu_int32 Instruction; /* maximum number of variables declared in a function */ #ifndef MAXVARS -#define MAXVARS 200 /* arbitrary limit (