From 857d825eeb9f0d91a3d8a2507e8955196646f9a1 Mon Sep 17 00:00:00 2001 From: "arg@mig29" Date: Thu, 7 Dec 2006 09:47:55 +0100 Subject: [PATCH] using the portable Xmb+UTF-8 way of life, will see if this works well... --- draw.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/draw.c b/draw.c index cef5efb..e4b2b88 100644 --- a/draw.c +++ b/draw.c @@ -167,14 +167,16 @@ getcolor(const char *colstr) { void setfont(const char *fontstr) { - char **missing, *def; + char *def, *lc, **missing; int i, n; - setlocale(LC_CTYPE, ""); + lc = setlocale(LC_CTYPE, NULL); + setlocale(LC_CTYPE, "UTF-8"); missing = NULL; if(dc.font.set) XFreeFontSet(dpy, dc.font.set); dc.font.set = XCreateFontSet(dpy, fontstr, &missing, &n, &def); + setlocale(LC_CTYPE, lc); if(missing) { while(n--) fprintf(stderr, "missing fontset: %s\n", missing[n]); -- 1.7.10.4