Skip to content
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

"uc" reports "ICU not found" for some strings #1024

Closed
p6rt opened this issue May 27, 2009 · 3 comments
Closed

"uc" reports "ICU not found" for some strings #1024

p6rt opened this issue May 27, 2009 · 3 comments
Labels

Comments

@p6rt
Copy link

p6rt commented May 27, 2009

Migrated from rt.perl.org#66060 (status was 'resolved')

Searchable as RT66060$

@p6rt
Copy link
Author

p6rt commented May 27, 2009

From daniel.carrera@theingots.org

Hello,

Using a Rakudo compiled yesterday from the Git repo​:

% cat test.p6.pl
my $content = $*IN.slurp;
$content = uc $content;
%
% perl6 test.p6.pl < test.p6.pl
no ICU lib loaded
in method Any​::uc (src/gen_setting.pm​:392)
called from Main (test.p6.pl​:2)
%

Strangely, the problem is unique to "uc". If you replace "uc" by "lc"
the problem goes away.

% cat test.p6.pl
my $content = $*IN.slurp;
$content = lc $content;
%
% perl6 test.p6.pl < test.p6.pl
%

Daniel.

@p6rt
Copy link
Author

p6rt commented Jul 1, 2009

From @pmichaud

Now fixed in 7fdd7c8. Closing ticket.

Pm

@p6rt
Copy link
Author

p6rt commented Jul 1, 2009

@pmichaud - Status changed from 'new' to 'resolved'

@p6rt p6rt closed this as completed Jul 1, 2009
@p6rt p6rt added the Bug label Jan 5, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant