You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When LC_ALL doesn't exist(*) then the error message printed wasn't readable.
Before:
$ LC_ALL= LC_NUMERIC='aa_BB' LC_PAPER='cc_DD' ./perl -e1
perl: warning: Setting locale failed for the categories:
LC_NUMERICLC_PAPERperl: warning: Please check that your locale settings:
LANGUAGE = "en_US:en",
...
After:
$ LC_ALL= LC_NUMERIC='aa_BB' LC_PAPER='cc_DD' ./perl -e1
perl: warning: Setting locale failed for the categories:
LC_NUMERIC
LC_PAPER
perl: warning: Please check that your locale settings:
...
(The output got mangled in commit e5f10d4)
(*) I faked this by adding '#undef LC_ALL' inside locale.c. This does
cause some test failure since some tests assume 'LC_ALL' is present.
0 commit comments