in reply to Re: Perl, Gtk2 and locale — a bit of a mess
in thread Perl, Gtk2 and locale — a bit of a mess
What does the POSIX standard say should happen? What does your system say setlocale should do?
The setlocale link talks about POSIX::setlocale( LC_ALL , "" ) setting stuff like you're seeing, but in perl its the default Usage: POSIX::setlocale(category, locale = 0)
To query you use NULL, perls equivalent is
$ perl -e " use POSIX qw/ setlocale LC_ALL /; print setlocale( LC_ALL +, undef ); " English_United States.1252
So I don't think I'm seeing a bug here, looks like its working as designed
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Perl, Gtk2 and locale — a bit of a mess (POSIX)
by Ralesk (Pilgrim) on Jul 15, 2013 at 10:12 UTC | |
by Anonymous Monk on Jul 15, 2013 at 10:31 UTC | |
by Ralesk (Pilgrim) on Jul 15, 2013 at 10:36 UTC | |
|
Re^3: Perl, Gtk2 and locale — a bit of a mess (POSIX)
by Ralesk (Pilgrim) on Jul 15, 2013 at 10:20 UTC |