-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Regex: use PCRE_UCP
#11265
Regex: use PCRE_UCP
#11265
Conversation
I'm fine with this change if it works. But according to #4704 (comment) it might not work depending on the compile config of the linked libpcre. |
It works for me and I'm on mac. That comment mentions it doesn't work for mac, so I don't know 🤷 CI is green too. |
It was a couple of years ago, maybe it has changed since then 👍 |
Should we add a spec for the sample in #4704 as well? |
Done! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @asterite 🙏
Let's merge it for 1.3 and see if there are any issues with the nightly builds. |
Fixes #11262
Fixes #4704
See https://www.pcre.org/original/doc/html/pcre_compile.html (search for PCRE_UCP.) It doesn't mention
[:print:]
but I assume it applies to that as well, because with this it starts working fine.