summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorschwarze <schwarze@openbsd.org>2013-06-01 14:27:13 +0000
committerschwarze <schwarze@openbsd.org>2013-06-01 14:27:13 +0000
commit67b9506bcebcf9d89eadc8efa77e384261b71561 (patch)
tree4081cf79e1af6efc37331268266370b6e1aef853
parenthook up slowcgi to the tree, including /etc glue and a sample configuration (diff)
downloadwireguard-openbsd-67b9506bcebcf9d89eadc8efa77e384261b71561.tar.xz
wireguard-openbsd-67b9506bcebcf9d89eadc8efa77e384261b71561.zip
Use a standard locale name, "UTF-8" is an ugly non-standard alias
that doesn't work on OpenBSD. OK tedu@ naddy@
-rw-r--r--usr.bin/mandoc/term_ascii.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/mandoc/term_ascii.c b/usr.bin/mandoc/term_ascii.c
index a1107fe148a..88c7d621fb9 100644
--- a/usr.bin/mandoc/term_ascii.c
+++ b/usr.bin/mandoc/term_ascii.c
@@ -1,4 +1,4 @@
-/* $Id: term_ascii.c,v 1.9 2011/12/05 00:28:12 schwarze Exp $ */
+/* $Id: term_ascii.c,v 1.10 2013/06/01 14:27:13 schwarze Exp $ */
/*
* Copyright (c) 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -52,7 +52,6 @@ ascii_init(enum termenc enc, char *outopts)
struct termp *p;
p = mandoc_calloc(1, sizeof(struct termp));
- p->enc = enc;
p->tabwidth = 5;
p->defrmargin = 78;
@@ -71,7 +70,7 @@ ascii_init(enum termenc enc, char *outopts)
if (TERMENC_ASCII != enc) {
v = TERMENC_LOCALE == enc ?
setlocale(LC_ALL, "") :
- setlocale(LC_CTYPE, "UTF-8");
+ setlocale(LC_CTYPE, "en_US.UTF-8");
if (NULL != v && MB_CUR_MAX > 1) {
p->enc = enc;
p->advance = locale_advance;