-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
on unicode [UNI] string handling #5474
Comments
From @ajsOn rakudo version 2016-04 and also the current m: bot version on IRC, this $ perl6 -e 'for 0..0xffff -> $i { say $i if $i %% 100; my $c = try { I think that it's defaulting to uniprop-int, but the odd thing is that If I call uniprop-str, this works as expected. -- |
From @nwc10On Sat, Jul 23, 2016 at 10:48:40AM -0700, Aaron Sherman wrote:
I get the SEGV earlier: $ ./perl6-m -Ilib -e 'for 0..0xffff -> $i { say $i if $i %% 100; my $c = try { :16(uniprop($i.chr, "Bidi_Mirroring_Glyph")).chr }; say "{$i.fmt("%04x")}: {$i.chr} ~ $c" if $c.defined}'
|
The RT System itself - Status changed from 'new' to 'open' |
From @samcvOn Sat, 23 Jul 2016 10:48:40 -0700, ajs wrote:
Support has been added for the Bidi_Mirroring_Glyph property since this was reported. Before it would give you a string which was a hex value. Now uniprop will give you the character as a string. If you query it with uniprop-int you will get the codepoint as an integer. Closing this ticket. |
@samcv - Status changed from 'open' to 'resolved' |
Migrated from rt.perl.org#128705 (status was 'resolved')
Searchable as RT128705$
The text was updated successfully, but these errors were encountered: