aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/term_ascii.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2013-06-01 14:27:20 +0000
committerIngo Schwarze <schwarze@openbsd.org>2013-06-01 14:27:20 +0000
commit0a8c05b329b382371e87a096770361e08419b197 (patch)
tree7792b429c67dd073c7049c7f82f635ce8a601ad4 /term_ascii.c
parent8d32a6d980199b6afcb36222d6081d10d2a3d894 (diff)
downloadmandoc-0a8c05b329b382371e87a096770361e08419b197.tar.gz
mandoc-0a8c05b329b382371e87a096770361e08419b197.tar.zst
mandoc-0a8c05b329b382371e87a096770361e08419b197.zip
Use a standard locale name, "UTF-8" is an ugly non-standard alias
that doesn't work on OpenBSD. OK tedu@ naddy@
Diffstat (limited to 'term_ascii.c')
-rw-r--r--term_ascii.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/term_ascii.c b/term_ascii.c
index 2f114786..cb7ac294 100644
--- a/term_ascii.c
+++ b/term_ascii.c
@@ -1,4 +1,4 @@
-/* $Id: term_ascii.c,v 1.20 2011/12/04 23:10:52 schwarze Exp $ */
+/* $Id: term_ascii.c,v 1.21 2013/06/01 14:27:20 schwarze Exp $ */
/*
* Copyright (c) 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -73,7 +73,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;
@@ -93,7 +92,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;