summaryrefslogtreecommitdiff
path: root/regexec.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-07-30 12:08:47 -0600
committerKarl Williamson <public@khwilliamson.com>2011-07-30 12:57:47 -0600
commitc973bd4f39028e70c9887cea72ea048a71347c9b (patch)
tree0817ea9d45ea3eff9757403f212bfae04dea1fb3 /regexec.c
parent18e84e8166b57276c5ac3cd4017c3afad5a039b3 (diff)
downloadperl-c973bd4f39028e70c9887cea72ea048a71347c9b.tar.gz
Panic with \b and /aa
This was due to my oversight in not fixing this switch statement to accommodate /aa when it was added.
Diffstat (limited to 'regexec.c')
-rw-r--r--regexec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/regexec.c b/regexec.c
index 62c7f87bae..d0658801bc 100644
--- a/regexec.c
+++ b/regexec.c
@@ -3732,6 +3732,7 @@ S_regmatch(pTHX_ regmatch_info *reginfo, regnode *prog)
n = isALNUM(nextchr);
break;
case REGEX_ASCII_RESTRICTED_CHARSET:
+ case REGEX_ASCII_MORE_RESTRICTED_CHARSET:
ln = isWORDCHAR_A(ln);
n = isWORDCHAR_A(nextchr);
break;