aboutsummaryrefslogtreecommitdiff
path: root/src/lua/lparser.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lua/lparser.c')
-rw-r--r--src/lua/lparser.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/lua/lparser.c b/src/lua/lparser.c
index bc7d9a4..bcdcfb6 100644
--- a/src/lua/lparser.c
+++ b/src/lua/lparser.c
@@ -489,12 +489,10 @@ static void adjust_assign (LexState *ls, int nvars, int nexps, expdesc *e) {
489} 489}
490 490
491 491
492/* 492#define enterlevel(ls) luaE_incCstack(ls->L)
493** Macros to limit the maximum recursion depth while parsing 493
494*/
495#define enterlevel(ls) luaE_enterCcall((ls)->L)
496 494
497#define leavelevel(ls) luaE_exitCcall((ls)->L) 495#define leavelevel(ls) ((ls)->L->nCcalls--)
498 496
499 497
500/* 498/*