Open benibela opened 3 years ago
re00984 tests that ⌈,⌉ (U+2308 and U+2309) should match \w
⌈,⌉
\w
But they have category code Ps,Pe, so they match \p{P} and should not match \w = [#x0000-#x10FFFF]-[\p{P}\p{Z}\p{C}]
\p{P}
[#x0000-#x10FFFF]-[\p{P}\p{Z}\p{C}]
re00984 tests that
⌈,⌉
(U+2308 and U+2309) should match\w
But they have category code Ps,Pe, so they match
\p{P}
and should not match\w
=[#x0000-#x10FFFF]-[\p{P}\p{Z}\p{C}]