From 0443ad9e288825b6e4441eb11104bcdb4ff4593a Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 25 Mar 2019 14:12:06 -0300 Subject: LUAI_MAXCCALLS renamed LUAI_MAXCSTACK The limit LUAI_MAXCCALLS was renamed LUAI_MAXCSTACK, which better represents its meaning. Moreover, its definition was moved to 'luaconf.h', given its importance now that Lua does not use a "stackless" implementation. --- llimits.h | 9 --------- 1 file changed, 9 deletions(-) (limited to 'llimits.h') diff --git a/llimits.h b/llimits.h index 155bb160..3df873db 100644 --- a/llimits.h +++ b/llimits.h @@ -168,15 +168,6 @@ typedef LUAI_UACINT l_uacInt; #endif -/* -** maximum depth for nested C calls and syntactical nested non-terminals -** in a program. (Value must fit in an unsigned short int. It must also -** be compatible with the size of the C stack.) -*/ -#if !defined(LUAI_MAXCCALLS) -#define LUAI_MAXCCALLS 2200 -#endif - /* -- cgit v1.2.3-55-g6feb