Re: Perl 6 / Rakudo unicode code point ranges

2013-02-20 Thread David Warring
Hi Will, On Wed, Feb 20, 2013 at 3:52 AM, Will Coleda wrote: > The code points giving you trouble are 0xFDD0..0xFDEF: > > > http://stackoverflow.com/questions/5188679/whats-the-purpose-of-the-noncharacters-ufdd0-to-ufdef > > You can split this into two ranges to avoid the problematic points (and

Re: Perl 6 / Rakudo unicode code point ranges

2013-02-20 Thread Larry Wall
In addition what Will said, you don't have to write \c[0xFFFD], since \xFFFD should do the same. Larry

Re: Perl 6 / Rakudo unicode code point ranges

2013-02-19 Thread Will Coleda
The code points giving you trouble are 0xFDD0..0xFDEF: http://stackoverflow.com/questions/5188679/whats-the-purpose-of-the-noncharacters-ufdd0-to-ufdef You can split this into two ranges to avoid the problematic points (and could use this to combine the distinct ranges you have above.) $ perl6