aboutsummaryrefslogtreecommitdiff
path: root/lptree.c
diff options
context:
space:
mode:
Diffstat (limited to 'lptree.c')
-rw-r--r--lptree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lptree.c b/lptree.c
index c59f443..2044a5c 100644
--- a/lptree.c
+++ b/lptree.c
@@ -1089,7 +1089,7 @@ static int verifyrule (lua_State *L, TTree *tree, int *passed, int npassed,
1089 return nb; 1089 return nb;
1090 /* else return verifyrule(L, sib2(tree), passed, npassed, nb); */ 1090 /* else return verifyrule(L, sib2(tree), passed, npassed, nb); */
1091 tree = sib2(tree); goto tailcall; 1091 tree = sib2(tree); goto tailcall;
1092 case TChoice: case TLabChoice: /* must check both children */ /* labeled failure */ 1092 case TChoice: case TLabChoice: case TRecov: /* must check both children */ /* labeled failure */
1093 nb = verifyrule(L, sib1(tree), passed, npassed, nb); 1093 nb = verifyrule(L, sib1(tree), passed, npassed, nb);
1094 /* return verifyrule(L, sib2(tree), passed, npassed, nb); */ 1094 /* return verifyrule(L, sib2(tree), passed, npassed, nb); */
1095 tree = sib2(tree); goto tailcall; 1095 tree = sib2(tree); goto tailcall;