From: Justin Viiret Date: Wed, 25 Nov 2015 06:05:36 +0000 (+1100) Subject: PCRE includes U+180E in /[:print:]/8W X-Git-Tag: v4.1.0^2~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=205bc1af7f4111b7757bc2646528df34fb5e54bc;p=thirdparty%2Fvectorscan.git PCRE includes U+180E in /[:print:]/8W --- diff --git a/src/parser/Utf8ComponentClass.cpp b/src/parser/Utf8ComponentClass.cpp index b6b161e8..cdfc974a 100644 --- a/src/parser/Utf8ComponentClass.cpp +++ b/src/parser/Utf8ComponentClass.cpp @@ -124,6 +124,7 @@ CodePointSet getPredefinedCodePointSet(PredefinedClass c, // Same as graph, plus everything with the Zs property. CodePointSet rv = getPredefinedCodePointSet(CLASS_XGRAPH, mode); rv |= getUcpZs(); + rv.set(0x180e); // Also included in this class by PCRE 8.38. return rv; } case CLASS_XPUNCT: {