diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-07-30 12:08:47 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-07-30 12:57:47 -0600 |
commit | c973bd4f39028e70c9887cea72ea048a71347c9b (patch) | |
tree | 0817ea9d45ea3eff9757403f212bfae04dea1fb3 /regexec.c | |
parent | 18e84e8166b57276c5ac3cd4017c3afad5a039b3 (diff) | |
download | perl-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.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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; |