diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2013-07-05 22:00:57 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2013-07-05 22:00:57 +0200 |
commit | 2301d127a2676303eac563e7932c03d9d72c446e (patch) | |
tree | 9bb912bd5df0a5b5676837e26625672a61f41ad8 /libbb | |
parent | 4f9fc1e5f5897dd2d143fa837f9288d55cf57f51 (diff) | |
download | busybox-w32-2301d127a2676303eac563e7932c03d9d72c446e.tar.gz busybox-w32-2301d127a2676303eac563e7932c03d9d72c446e.tar.bz2 busybox-w32-2301d127a2676303eac563e7932c03d9d72c446e.zip |
unicode: check $LC_CTYPE too to detect Unicode mode
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/unicode.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libbb/unicode.c b/libbb/unicode.c index c1e3966fe..35e88d307 100644 --- a/libbb/unicode.c +++ b/libbb/unicode.c | |||
@@ -39,8 +39,15 @@ void FAST_FUNC reinit_unicode(const char *LANG) | |||
39 | 39 | ||
40 | void FAST_FUNC init_unicode(void) | 40 | void FAST_FUNC init_unicode(void) |
41 | { | 41 | { |
42 | /* Some people set only $LC_CTYPE, not $LC_ALL, because they want | ||
43 | * only Unicode to be activated on their system, not the whole | ||
44 | * shebang of wrong decimal points, strange date formats and so on. | ||
45 | * | ||
46 | * TODO? Maybe we should use LC_CTYPE instead of LC_ALL in setlocale()? | ||
47 | */ | ||
42 | if (unicode_status == UNICODE_UNKNOWN) { | 48 | if (unicode_status == UNICODE_UNKNOWN) { |
43 | char *s = getenv("LC_ALL"); | 49 | char *s = getenv("LC_ALL"); |
50 | if (!s) s = getenv("LC_CTYPE"); | ||
44 | if (!s) s = getenv("LANG"); | 51 | if (!s) s = getenv("LANG"); |
45 | reinit_unicode(s); | 52 | reinit_unicode(s); |
46 | } | 53 | } |
@@ -63,6 +70,7 @@ void FAST_FUNC init_unicode(void) | |||
63 | { | 70 | { |
64 | if (unicode_status == UNICODE_UNKNOWN) { | 71 | if (unicode_status == UNICODE_UNKNOWN) { |
65 | char *s = getenv("LC_ALL"); | 72 | char *s = getenv("LC_ALL"); |
73 | if (!s) s = getenv("LC_CTYPE"); | ||
66 | if (!s) s = getenv("LANG"); | 74 | if (!s) s = getenv("LANG"); |
67 | reinit_unicode(s); | 75 | reinit_unicode(s); |
68 | } | 76 | } |