From: nicm Date: Mon, 3 Jul 2017 08:08:30 +0000 (+0000) Subject: Try C.UTF-8 which is also a commonly useful locale on some platforms, X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=662faea67ce0a44468b147efa806bb87d20c01d4;p=openbsd Try C.UTF-8 which is also a commonly useful locale on some platforms, from Romain Francoise. --- diff --git a/usr.bin/tmux/tmux.c b/usr.bin/tmux/tmux.c index 09a649cf181..8c68c31421c 100644 --- a/usr.bin/tmux/tmux.c +++ b/usr.bin/tmux/tmux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.c,v 1.182 2017/04/22 12:08:41 nicm Exp $ */ +/* $OpenBSD: tmux.c,v 1.183 2017/07/03 08:08:30 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -196,7 +196,8 @@ main(int argc, char **argv) int opt, flags, keys; const struct options_table_entry *oe; - if (setlocale(LC_CTYPE, "en_US.UTF-8") == NULL) { + if (setlocale(LC_CTYPE, "en_US.UTF-8") == NULL && + setlocale(LC_CTYPE, "C.UTF-8") == NULL) { if (setlocale(LC_CTYPE, "") == NULL) errx(1, "invalid LC_ALL, LC_CTYPE or LANG"); s = nl_langinfo(CODESET);