Mercurial > aewl
diff draw.c @ 619:bda4880c462d
with this patch everything works fine for me
author | arg@mig29 |
---|---|
date | Thu, 07 Dec 2006 10:02:46 +0100 |
parents | 567d70d132fa |
children | 2644c951fc74 |
line wrap: on
line diff
--- a/draw.c Thu Dec 07 09:49:45 2006 +0100 +++ b/draw.c Thu Dec 07 10:02:46 2006 +0100 @@ -2,7 +2,6 @@ * See LICENSE file for license details. */ #include "dwm.h" -#include <locale.h> #include <stdio.h> #include <string.h> @@ -167,16 +166,13 @@ void setfont(const char *fontstr) { - char *def, *lc, **missing; + char *def, **missing; int i, n; - 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]);