PCRE includes U+180E in /[:print:]/8W

This commit is contained in:
Justin Viiret 2015-11-25 17:05:36 +11:00 committed by Matthew Barr
parent f9b7e806b1
commit 205bc1af7f

View File

@ -124,6 +124,7 @@ CodePointSet getPredefinedCodePointSet(PredefinedClass c,
// Same as graph, plus everything with the Zs property. // Same as graph, plus everything with the Zs property.
CodePointSet rv = getPredefinedCodePointSet(CLASS_XGRAPH, mode); CodePointSet rv = getPredefinedCodePointSet(CLASS_XGRAPH, mode);
rv |= getUcpZs(); rv |= getUcpZs();
rv.set(0x180e); // Also included in this class by PCRE 8.38.
return rv; return rv;
} }
case CLASS_XPUNCT: { case CLASS_XPUNCT: {