# HG changeset patch # User arg@mig29 # Date 1165481275 -3600 # Node ID ae5c3e06f7e2884b92d728a56e59ed1c6a98476a # Parent f617c75a84050e0f002e9cca8783d0ffebd3b646 using the portable Xmb+UTF-8 way of life, will see if this works well... diff -r f617c75a8405 -r ae5c3e06f7e2 draw.c --- a/draw.c Wed Dec 06 11:19:06 2006 +0100 +++ b/draw.c Thu Dec 07 09:47:55 2006 +0100 @@ -167,14 +167,16 @@ 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]);