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
This was an unintended bug added ages ago. In c64477d, we modified
midChar to add \p{Po} to the character set. Unfortunately, we added |,
essentially ending up with [somechars|\p{Po}]. In other words, | was now
part of the set, while we only meant it as a regex "or" operator.
Fix this, and add a test.
Fixes#26.
0 commit comments