(mutually_exclusive_p): In 'case wordbeg', compare op2
against proper opcode.
This commit is contained in:
parent
860e1e0f9f
commit
2a0c736beb
1 changed files with 1 additions and 1 deletions
|
@ -4661,7 +4661,7 @@ mutually_exclusive_p (bufp, p1, p2)
|
|||
case wordbeg:
|
||||
case syntaxspec:
|
||||
return ((re_opcode_t) *p1 == notsyntaxspec
|
||||
&& p1[1] == (op2 == wordend ? Sword : p2[1]));
|
||||
&& p1[1] == (op2 == wordbeg ? Sword : p2[1]));
|
||||
|
||||
case wordbound:
|
||||
return (((re_opcode_t) *p1 == notsyntaxspec
|
||||
|
|
Loading…
Add table
Reference in a new issue