You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When recompiling a regexp using \p the recompiled RegExp is incorrect
our ( $q, $myre );
BEGIN { $q = qr[\p{IsWord}] }
evalq/$myre = qr[^$q]/; # add ^ to force the RegExp to be recompiledprintqq[match ok\n]ifq[hello] =~ $myre;
The compiled version output nothing (no segfault) whereas we should expect match ok output
MOTHER_RE is missing from $q, the REGEXP.
That's the only difference I've found, and the most likely cause to create a OPFAIL (-Dr) instead of the POSIXU[\w]
When recompiling a regexp using \p the recompiled RegExp is incorrect
The compiled version output nothing (no segfault) whereas we should expect
match ok
outputtested with HEAD @ 5f74704
The text was updated successfully, but these errors were encountered: