about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAnselm R Garbe <[email protected]>2008-08-29 10:09:40 +0100
committerAnselm R Garbe <[email protected]>2008-08-29 10:09:40 +0100
commitef00902fd91dba280aba605b1a812c2f0cdc3657 (patch)
tree845220e5a9d8342287ebc31d015a229e54ceaa6c
parentreverted setlocale() call (diff)
downloaddmenu-ef00902fd91dba280aba605b1a812c2f0cdc3657.tar.gz
dmenu-ef00902fd91dba280aba605b1a812c2f0cdc3657.tar.bz2
dmenu-ef00902fd91dba280aba605b1a812c2f0cdc3657.zip
simplified initfont
-rw-r--r--dmenu.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/dmenu.c b/dmenu.c
index 18f2a56..c0addad 100644
--- a/dmenu.c
+++ b/dmenu.c
@@ -79,7 +79,7 @@ static unsigned int mw, mh;
 static unsigned int numlockmask = 0;
 static Bool running = True;
 static Display *dpy;
-static DC dc = {0};
+static DC dc;
 static Item *allitems = NULL;	/* first of all items */
 static Item *item = NULL;	/* first of pattern matching items */
 static Item *sel = NULL;
@@ -300,9 +300,6 @@ initfont(const char *fontstr) {
 		}
 	}
 	else {
-		if(dc.font.xfont)
-			XFreeFont(dpy, dc.font.xfont);
-		dc.font.xfont = NULL;
 		if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr))
 		&& !(dc.font.xfont = XLoadQueryFont(dpy, "fixed")))
 			eprint("error, cannot load font: '%s'\n", fontstr);