aboutsummaryrefslogtreecommitdiff
path: root/lpcap.c
diff options
context:
space:
mode:
Diffstat (limited to 'lpcap.c')
-rw-r--r--lpcap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lpcap.c b/lpcap.c
index b6911cb..c9085de 100644
--- a/lpcap.c
+++ b/lpcap.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lpcap.c,v 1.5 2014/12/12 16:58:47 roberto Exp $ 2** $Id: lpcap.c,v 1.6 2015/06/15 16:09:57 roberto Exp $
3** Copyright 2007, Lua.org & PUC-Rio (see 'lpeg.html' for license) 3** Copyright 2007, Lua.org & PUC-Rio (see 'lpeg.html' for license)
4*/ 4*/
5 5
@@ -126,7 +126,7 @@ static Capture *findback (CapState *cs, Capture *cap) {
126 continue; /* opening an enclosing capture: skip and get previous */ 126 continue; /* opening an enclosing capture: skip and get previous */
127 if (captype(cap) == Cgroup) { 127 if (captype(cap) == Cgroup) {
128 getfromktable(cs, cap->idx); /* get group name */ 128 getfromktable(cs, cap->idx); /* get group name */
129 if (lua_equal(L, -2, -1)) { /* right group? */ 129 if (lp_equal(L, -2, -1)) { /* right group? */
130 lua_pop(L, 2); /* remove reference name and group name */ 130 lua_pop(L, 2); /* remove reference name and group name */
131 return cap; 131 return cap;
132 } 132 }