JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
with this patch everything works fine for me
[dwm.git] / draw.c
diff --git a/draw.c b/draw.c
index e4b2b88..eeb3e56 100644 (file)
--- a/draw.c
+++ b/draw.c
@@ -4,7 +4,6 @@
 #include "dwm.h"
 #include <stdio.h>
 #include <string.h>
-#include <X11/Xlocale.h>
 
 /* static */
 
@@ -167,16 +166,13 @@ getcolor(const char *colstr) {
 
 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]);