in reply to Re^2: Perl, Gtk2 and locale — a bit of a mess (POSIX)
in thread Perl, Gtk2 and locale — a bit of a mess

POSIX(3pm) says that the Perl equivalent of C’s setlocale(cat, NULL) is setlocale($cat) (i.e. one argument). I’m not explicitly setting the locale to the environment-given locale (setlocale($cat, "") or in C setlocale(cat, "")) until later in the code, so it should default to C locale.

Replies are listed 'Best First'.
Re^4: Perl, Gtk2 and locale — a bit of a mess (POSIX)
by Anonymous Monk on Jul 15, 2013 at 10:31 UTC

      I found this, after looking around on that horrible RT. Hmm.