commit 3a9401ae90d2a16c7a06328d397775ca5b46ffc0
parent 0f897f99ef576ae80a1e2d7cee29c498e3449b36
Author: Russ Cox <rsc@swtch.com>
Date: Wed, 30 Jan 2008 13:47:07 -0500
sam: fix regexp match choice bug
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/cmd/sam/regexp.c b/src/cmd/sam/regexp.c
@@ -772,7 +772,7 @@ bexecute(File *f, Posn startp)
break;
case OR:
/* evaluate right choice later */
- if(addinst(tl, inst->right, &tlp->se))
+ if(addinst(tlp, inst->right, &tlp->se))
if(++ntl >= NLIST)
goto Overflow;
/* efficiency: advance and re-evaluate */