Skip to content

Commit

Permalink
Check LC_CTYPE to set UTF-8 locale
Browse files Browse the repository at this point in the history
Fix #752

Signed-off-by: Laurent Cheylus <foxy@free.fr>
  • Loading branch information
lcheylus committed Feb 8, 2024
1 parent edcb68c commit f2ead3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/btop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -920,7 +920,7 @@ int main(int argc, char **argv) {
else {
string found;
bool set_failure{};
for (const auto loc_env : array{"LANG", "LC_ALL"}) {
for (const auto loc_env : array{"LANG", "LC_ALL", "LC_CTYPE"}) {
if (std::getenv(loc_env) != nullptr and str_to_upper(s_replace((string)std::getenv(loc_env), "-", "")).ends_with("UTF8")) {
found = std::getenv(loc_env);
if (std::setlocale(LC_ALL, found.c_str()) == nullptr) {
Expand Down

0 comments on commit f2ead3d

Please sign in to comment.