From 16620bc92834d5f0c26df4ec247eff77a6a39909 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Fri, 20 May 2011 15:48:22 +0000 Subject: Flip on -Tutf8 backend support. This forces the UTF-8 LC_CTYPE and does little else. Also remove the check for __STDC_ISO_10646__. It turns out that very few systems---even those that support it---actually declare this and it's just causing problems instead of being useful. --- term_ascii.c | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'term_ascii.c') diff --git a/term_ascii.c b/term_ascii.c index af1fade9..f1db4c5a 100644 --- a/term_ascii.c +++ b/term_ascii.c @@ -89,15 +89,19 @@ ascii_init(enum termenc enc, char *outopts) p->letter = ascii_letter; p->width = ascii_width; -#if defined (USE_WCHAR) - if (TERMENC_LOCALE == enc) - if (setlocale(LC_ALL, "") && MB_CUR_MAX > 1) { +#ifdef USE_WCHAR + if (TERMENC_ASCII != enc) { + v = TERMENC_LOCALE == enc ? + setlocale(LC_ALL, "") : + setlocale(LC_CTYPE, "UTF-8"); + if (NULL != v && MB_CUR_MAX > 1) { p->enc = enc; p->advance = locale_advance; p->endline = locale_endline; p->letter = locale_letter; p->width = locale_width; } + } #endif toks[0] = "width"; @@ -126,6 +130,14 @@ ascii_alloc(char *outopts) return(ascii_init(TERMENC_ASCII, outopts)); } +void * +utf8_alloc(char *outopts) +{ + + return(ascii_init(TERMENC_UTF8, outopts)); +} + + void * locale_alloc(char *outopts) { -- cgit