From 662faea67ce0a44468b147efa806bb87d20c01d4 Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 3 Jul 2017 08:08:30 +0000 Subject: [PATCH] Try C.UTF-8 which is also a commonly useful locale on some platforms, from Romain Francoise. --- usr.bin/tmux/tmux.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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); -- 2.20.1