aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dmenu.h3
-rw-r--r--draw.c2
2 files changed, 2 insertions, 3 deletions
diff --git a/dmenu.h b/dmenu.h
index 1eb57ba..08d7605 100644
--- a/dmenu.h
+++ b/dmenu.h
@@ -3,14 +3,13 @@
3 */ 3 */
4 4
5#include <X11/Xlib.h> 5#include <X11/Xlib.h>
6#include <X11/Xlocale.h>
7 6
8#define FONT "fixed" 7#define FONT "fixed"
9#define NORMBGCOLOR "#333366" 8#define NORMBGCOLOR "#333366"
10#define NORMFGCOLOR "#cccccc" 9#define NORMFGCOLOR "#cccccc"
11#define SELBGCOLOR "#666699" 10#define SELBGCOLOR "#666699"
12#define SELFGCOLOR "#eeeeee" 11#define SELFGCOLOR "#eeeeee"
13#define SPACE 30 /* px */ 12#define SPACE 30 /* px */
14 13
15/* color */ 14/* color */
16enum { ColFG, ColBG, ColLast }; 15enum { ColFG, ColBG, ColLast };
diff --git a/draw.c b/draw.c
index 56a1beb..29289a4 100644
--- a/draw.c
+++ b/draw.c
@@ -84,7 +84,7 @@ setfont(const char *fontstr) {
84 int i, n; 84 int i, n;
85 85
86 missing = NULL; 86 missing = NULL;
87 setlocale(LC_ALL, ""); 87 setlocale(LC_CTYPE, "");
88 if(dc.font.set) 88 if(dc.font.set)
89 XFreeFontSet(dpy, dc.font.set); 89 XFreeFontSet(dpy, dc.font.set);
90 dc.font.set = XCreateFontSet(dpy, fontstr, &missing, &n, &def); 90 dc.font.set = XCreateFontSet(dpy, fontstr, &missing, &n, &def);