removed the hardcoded fixed fallback, it is useless in non-Latin1 environments
authorarg@mig29
Fri, 08 Dec 2006 10:40:09 +0100
changeset 626 2644c951fc74
parent 625 0811e4114faa
child 627 f83ac177a3a0
removed the hardcoded fixed fallback, it is useless in non-Latin1 environments
config.mk
draw.c
--- a/config.mk	Thu Dec 07 16:38:57 2006 +0100
+++ b/config.mk	Fri Dec 08 10:40:09 2006 +0100
@@ -1,5 +1,5 @@
 # dwm version
-VERSION = 2.6
+VERSION = 2.7
 
 # Customize below to fit your system
 
--- a/draw.c	Thu Dec 07 16:38:57 2006 +0100
+++ b/draw.c	Fri Dec 08 10:40:09 2006 +0100
@@ -197,10 +197,7 @@
 		if(dc.font.xfont)
 			XFreeFont(dpy, dc.font.xfont);
 		dc.font.xfont = NULL;
-		dc.font.xfont = XLoadQueryFont(dpy, fontstr);
-		if (!dc.font.xfont)
-			dc.font.xfont = XLoadQueryFont(dpy, "fixed");
-		if (!dc.font.xfont)
+		if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr)))
 			eprint("error, cannot init 'fixed' font\n");
 		dc.font.ascent = dc.font.xfont->ascent;
 		dc.font.descent = dc.font.xfont->descent;