about summary refs log tree commit diff stats
path: root/draw.c
diff options
context:
space:
mode:
authorarg@mig29 <unknown>2006-12-07 10:02:46 +0100
committerarg@mig29 <unknown>2006-12-07 10:02:46 +0100
commitd42c3ba2dc249a77f1f2417a1c72a3b7744fd932 (patch)
tree90029cbcfba6836bbfec3aaa2a6bf2ea15eb4308 /draw.c
parent4b06155873d8d6b6588c3fc50c92c64a61a863f4 (diff)
downloaddwm-d42c3ba2dc249a77f1f2417a1c72a3b7744fd932.tar.gz
with this patch everything works fine for me
Diffstat (limited to 'draw.c')
-rw-r--r--draw.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/draw.c b/draw.c
index 2dcafe1..eeb3e56 100644
--- a/draw.c
+++ b/draw.c
@@ -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 @@ 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]);
href='#n169'>169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205