We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78cd8d3 commit 23eace7Copy full SHA for 23eace7
unicodetools/src/main/java/org/unicode/props/UnicodeProperty.java
@@ -952,7 +952,7 @@ private class MyXSymbolTable extends UnicodeSet.XSymbolTable {
952
@Override
953
public boolean applyPropertyAlias(
954
String propertyName, String propertyValue, UnicodeSet result) {
955
- if (propertyName.equals("C") && propertyValue.isEmpty()) {
+ if ((propertyName.equals("C") || propertyName.equals("c")) && propertyValue.isEmpty()) {
956
// C matches isc=ISO_Comment, and we are not able to distinguish
957
// \p{C} (=\p{General_Category=Other}) from \p{C=} (=\p{ISO_Comment=}) here.
958
// Fall back to ICU, since this symbol table does not implement GC groupings.
0 commit comments