# HG changeset patch # User arg@mig29 # Date 1165570809 -3600 # Node ID 2644c951fc74e83a1ec84c27b9d4cedee41bf287 # Parent 0811e4114faa46420517bbba8239d83fdce99a6f removed the hardcoded fixed fallback, it is useless in non-Latin1 environments diff -r 0811e4114faa -r 2644c951fc74 config.mk --- 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 diff -r 0811e4114faa -r 2644c951fc74 draw.c --- 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;