Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
strip U+180e from \s tests (Mongolian Vowel Separator)
  • Loading branch information
FROGGS committed Jan 8, 2014
1 parent e264d33 commit 74d93ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/qregex/rx_metachars
Expand Up @@ -155,7 +155,7 @@ a|&b a|&b <rule error> alternation and conjunction (|&) - parse error
^ \h+ $ \x000a\x000b\x000c\x000d\x0085 n 0-255 horizontal whitespace (\h)
^ \v+ $ \x0009\x0020\x00a0 n 0-255 vertical whitespace (\v)
# todo :pugs<feature>
^ \s+ $ \x1680\x180e\x2000\x2001\x2002\x2003\x2004\x2005\x2006\x2007\x2008\x2008\x2009\x200a\x202f\x205f\x3000 y unicode whitespace (\s)
^ \s+ $ \x1680\x2000\x2001\x2002\x2003\x2004\x2005\x2006\x2007\x2008\x2008\x2009\x200a\x202f\x205f\x3000 y unicode whitespace (\s)
# todo :pugs<feature>
^ \h+ $ \x1680\x180e\x2000\x2001\x2002\x2003\x2004\x2005\x2006\x2007\x2008\x2008\x2009\x200a\x202f\x205f\x3000 y unicode whitespace (\h)
^ \V+ $ \x1680\x180e\x2000\x2001\x2002\x2003\x2004\x2005\x2006\x2007\x2008\x2008\x2009\x200a\x202f\x205f\x3000 y unicode whitespace (\V)
Expand Down

0 comments on commit 74d93ae

Please sign in to comment.