commit d694fe22b7818371af0368b5ae1623b640dd24e8
parent 3a9401ae90d2a16c7a06328d397775ca5b46ffc0
Author: Russ Cox <rsc@swtch.com>
Date: Wed, 30 Jan 2008 13:47:15 -0500
acme: fix regexp match choice bug
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/cmd/acme/regx.c b/src/cmd/acme/regx.c
@@ -667,7 +667,7 @@ rxexecute(Text *t, Rune *r, uint startp, uint eof, Rangeset *rp)
break;
case OR:
/* evaluate right choice later */
- if(addinst(tl, inst->u.right, &tlp->se))
+ if(addinst(tlp, inst->u.right, &tlp->se))
if(++ntl >= NLIST)
goto Overflow;
/* efficiency: advance and re-evaluate */